-
Notifications
You must be signed in to change notification settings - Fork 76
Home
Jacob C edited this page Apr 25, 2016
·
23 revisions
SCIM 2.0 is an IETF standard that defines an extensible schema mechanism and REST API for managing users or other types of data. The UnboundID SCIM 2 SDK provides a simple yet powerful API for developing SCIM 2 applications with Java.
The SCIM 2 SDK requires Java 6 or greater.
The SCIM 2 SDK is available as a component in Maven Central.
If you are writing a SCIM 2 client, use the scim2-sdk-client component:
<dependency>
<groupId>com.unboundid.product.scim2</groupId>
<artifactId>scim2-sdk-client</artifactId>
<version>1.1.34</version>
</dependency>
If you are writing a SCIM 2 client for UnboundID servers, use the scim2-ubid-extensions component:
<dependency>
<groupId>com.unboundid.product.scim2</groupId>
<artifactId>scim2-ubid-extensions</artifactId>
<version>1.1.34</version>
</dependency>
You may also download SCIM 2 SDK builds from the Releases page.
The SCIM 2 SDK is LGPL-licensed. See the LICENSE file for more info.