suyambuganesh / scimono

SAP SCIMono is a java reference implementation of the SCIM 2.0 industry standard for identity management. For more information about the specification visit: http://www.simplecloud.info

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SAP SCIMono Library

Open source SCIM 2.0 client and server library.

Description

Features

SCIMono provides drop-in support for serving a SCIM v2 API. Supported features:

  • Fully SCIM v2 compliant
  • Support for the following resources: Users, Groups, Schemas
  • Resource paging (index-based as required by SCIM spec. & id-based for custom scenarios)
  • Filtering (full support for SCIM filtering syntax spec.)
  • Any auth method (OAuth, by default)
  • Patch support (complex single-/multi-resource updated)
  • ETags

Requirements

Download and Installation

Download

Clone the repository to your local machine.

git clone https://github.com/SAP/scimono.git
cd scimono

Installation

mvn clean install

Usage

To use it, you need the following Maven dependency:

  <dependency>
      <groupId>com.sap.scimono</groupId>
      <artifactId>scimono-server</artifactId>
      <version>${project.version}</version>
  </dependency>

Exposing an API endpoint is then as easy as:

  import com.sap.scimono.SCIMApplication;
  
  import javax.ws.rs.ApplicationPath;
  
  @ApplicationPath("scim")
  public class MySCIMApi extends SCIMApplication {}

Configuration

Out of the box, you get a default configuration (exposed via the standard /ServiceProvider):

  • 100 resources per page
  • OAuth auth

The default implementation will return 501 Not Implemented for resource operations.

The library provides 5 standard callbacks that plug into the default resources:

  • UsersCallback
  • GroupsCallback
  • SchemasCallback (for exposing custom schemas)
  • ConfigurationCallback
  • ResourceTypesCallback (for exposing custom resource types)

They are instantiated on a per-request basis (multi-tenancy support is straightforward to achieve) and are cached for the lifetime of the request. To use them, override the corresponding methods exposed by SCIMApplication:

import com.sap.scimono.SCIMApplication;
import com.sap.scimono.callback.config.SCIMConfigurationCallback;
import com.sap.scimono.callback.groups.GroupsCallback;
import com.sap.scimono.callback.schemas.SchemasCallback;
import com.sap.scimono.callback.users.UsersCallback;
import com.sap.scimono.callback.users.ResourceTypesCallback;

import javax.ws.rs.ApplicationPath;

@ApplicationPath("scim")
public class MySCIMApi extends SCIMApplication {
  @Override
  public UsersCallback getUsersCallback() {
    return new MongoUserStorage(currentTenant);
  }

  @Override
  public GroupsCallback getGroupsCallback() {
    return new MongoGroupStorage(currentTenant);
  }

  @Override
  public SchemasCallback getSchemasCallback() {
    return new MongoSchemaStorage(currentTenant);
  }

  @Override
  public SCIMConfigurationCallback getConfigurationCallback() {
    return new MySCIMConfiguration();
  }

  @Override
  public ResourceTypesCallback getResourceTypesCallback() {
      return new new MongoResourceTypeStorage(currentTenant);
  }
}

The library also provides an extension point for custom resources. Example snippet:

import com.sap.scimono.SCIMApplication;

import javax.ws.rs.ApplicationPath;
import java.util.Set;

@ApplicationPath("scim")
public class TestApplication extends SCIMApplication {

  @Override
  public Set<Class<?>> getAdditionalResourceProviders() {
    return super.getAdditionalResourceProviders();
  }
}

Limitations

The current features are not currently supported but might be in the future:

  • Passwords
  • Sorting
  • Bulk operations

Known Issues

A list of known issues is available on the GitHub issues page of this project.

How to obtain support

For any question please open an issue in GitHub and make use of the labels in order to refer to the sample and to categorize the kind of the issue.

Contributing

Our aim is to build a lively community, hence, we welcome any exchange and collaboration with individuals and organizations interested in the use, support and extension of the open-source SAP SCIMono Library.

Please follow this document for more information on the process.

To-Do (upcoming changes)

  • We are currently working on client-side support for the SAP SCIMono Library. This will allow easy SCIM 2.0 client implementations.

License

Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file

About

SAP SCIMono is a java reference implementation of the SCIM 2.0 industry standard for identity management. For more information about the specification visit: http://www.simplecloud.info

License:Apache License 2.0


Languages

Language:Java 99.8%Language:ANTLR 0.2%