All Projects → wso2 → charon

wso2 / charon

Licence: other
No description, website, or topics provided.

Programming Languages

java
68154 projects - #9 most used programming language

WSO2 Charon - SCIM 2.0 Open Source Implementation

Branch Build Status Travis CI Status
master Build Status Travis CI Status

WSO2 Charon is an open source implementation of SCIM protocol which is an open standard for Identity Provisioning. Charon comes under Apache 2.0 license. It can be used by any one who wants to add SCIM-based provisioning support for their applications. WSO2 Charon is integrated with WSO2 Identity Server.

The following includes a brief introduction on each of the modules.

Charon-Core: This is the API that exposes an implementation of the SCIM specification. It can be used by any SCIM service provider or client implementation to support SCIM operations/functionalities. In addition to that, it also allows room for extension points to be plugged in according to the particular server side/client side implementation like user storage.

Charon-Utils: This contains a set of default implementations of the extension points. For example: SCIMUserManager. A particular implementation that uses charon-core as SCIM API can use these default implementations as building blocks.

Charon-Impl: A reference implementation of SCIM service provider is shipped with this module. Currently it is WSO2 msf4j based micro service that enables the SCIM endpoints to be exposed. This is based on the above two modules: charon-core and charon-utils, and illustrates how any SCIM implementation can utilize the API and supporting module provided by Charon.

Charon-Samples: This contains samples illustrating the SCIM use cases. Samples mainly contain the SCIM client side implementations which can be run against a SCIM server, and hence can also be referenced to get to know how the API provided by Charon can be used to implement SCIM client side.

Currently following features are supported.

/Users Endpoint

  • Create
  • Get
  • Delete
  • List
  • Pagination
  • attributes and exclude attribute support for all operations
  • Update with PUT
  • Sorting
  • Filtering including complex filters
  • Querying with POST
  • Update with PATCH
    • Add
    • Remove
    • Replace

/Groups Endpoint

  • Create
  • Get
  • Delete
  • List
  • Filtering including complex filters
  • Pagination
  • attributes and exclude attribute support for all operations
  • Sorting
  • Update with PUT
  • Querying with POST
  • Update with PATCH
    • Add
    • Remove
    • Replace

/Me Endpoint

  • Create
  • Get
  • Delete
  • attributes and exclude attribute support for all operations
  • Update with PUT
  • Update with PATCH
    • Add
    • Remove
    • Replace

EnterpriseUser

  • Create
  • Get
  • Delete
  • List
  • Pagination
  • attributes and exclude attribute support for all operations
  • Update with PUT
  • Sorting
  • Filtering including complex filters
  • Querying with POST
  • Update with PATCH
    • Add
    • Remove
    • Replace

/ServiceProviderConfig Endpoint

  • Get

/ResourceType Endpoint

  • Get

/Schemas Endpoint

  • Get

/Bulk Endpoint

  • Create
  • Get
  • Delete
  • Update with PUT
  • Update with PATCH

Following features are being developed.

  • Resource versioning
  • Circular reference in /Bulk endpoint
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].