Skip to content

Instantly share code, notes, and snippets.

@sschum
sschum / BugFilterWithNot.java
Created September 30, 2014 15:10
JUnit-Test for the not-filter-bug
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
import org.osiam.client.OsiamConnector;
import org.osiam.client.oauth.AccessToken;
import org.osiam.client.oauth.Scope;
import org.osiam.client.query.Query;
import org.osiam.client.query.QueryBuilder;
import org.osiam.resources.scim.Group;
@sschum
sschum / wiki.part
Created October 1, 2014 13:10
This is the part of osiam wiki for the extension interface
To get all persisted extension definition you can send a GET-Request to a OSIAM specific interface:
```http
http://OSIAMHOST:8080/osiam-resource-server/osiam/extension-definition
```
The response contains the list of all extension definitions that are persisted in the OSIAM database. This interface is also secured. That means that you need to put a valid access token into the authentication header.
The following shows you an example cURL command to get the extension definitions.