Package com.unboundid.scim2.client
Class ScimService
- java.lang.Object
-
- com.unboundid.scim2.client.ScimService
-
- All Implemented Interfaces:
ScimInterface
public class ScimService extends Object implements ScimInterface
The main entry point to the client API used to access a SCIM 2 service provider.
-
-
Field Summary
Fields Modifier and Type Field Description static URIME_URIThe authenticated subject alias.static jakarta.ws.rs.core.MediaTypeMEDIA_TYPE_SCIM_TYPEThe SCIM media type.
-
Constructor Summary
Constructors Constructor Description ScimService(jakarta.ws.rs.client.WebTarget baseTarget)Create a new client instance to the SCIM 2 service provider at the provided WebTarget.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T extends ScimResource>
Tcreate(String endpoint, T resource)Create the provided new SCIM resource at the service provider.<T extends ScimResource>
CreateRequestBuilder<T>createRequest(String endpoint, T resource)Build a request to create the provided new SCIM resource at the service provider.voiddelete(String endpoint, String id)Delete a SCIM resource at the service provider.voiddelete(URI url)Delete a SCIM resource at the service provider.<T extends ScimResource>
voiddelete(T resource)Delete a SCIM resource at the service provider.DeleteRequestBuilderdeleteRequest(String endpoint, String id)Build a request to delete a SCIM resource at the service provider.DeleteRequestBuilderdeleteRequest(URI url)Build a request to delete a SCIM resource at the service provider.<T extends ScimResource>
DeleteRequestBuilderdeleteRequest(T resource)Build a request to delete a SCIM resource at the service provider.ResourceTypeResourcegetResourceType(String name)Retrieve a known resource type supported by the service provider.ListResponse<ResourceTypeResource>getResourceTypes()Retrieve the resource types supported by the service provider.SchemaResourcegetSchema(String id)Retrieve a known schema supported by the service provider.ListResponse<SchemaResource>getSchemas()Retrieve the schemas supported by the service provider.ServiceProviderConfigResourcegetServiceProviderConfig()Retrieve the service provider configuration.<T extends ScimResource>
Tmodify(String endpoint, String id, PatchRequest patchRequest, Class<T> clazz)Modify a SCIM resource by updating one or more attributes using a sequence of operations to "add", "remove", or "replace" values.<T extends ScimResource>
Tmodify(T resource, PatchRequest patchRequest)Modify a SCIM resource by updating one or more attributes using a sequence of operations to "add", "remove", or "replace" values.ModifyRequestBuilder.TypedmodifyRequest(String endpoint, String id)Modify a SCIM resource by updating one or more attributes using a sequence of operations to "add", "remove", or "replace" values.ModifyRequestBuilder.TypedmodifyRequest(URI url)Modify a SCIM resource by updating one or more attributes using a sequence of operations to "add", "remove", or "replace" values.<T extends ScimResource>
ModifyRequestBuilder.Generic<T>modifyRequest(T resource)Modify a SCIM resource by updating one or more attributes using a sequence of operations to "add", "remove", or "replace" values.<T extends ScimResource>
Treplace(T resource)Modify a SCIM resource by replacing the resource's attributes at the service provider.<T extends ScimResource>
ReplaceRequestBuilder<T>replaceRequest(URI uri, T resource)Build a request to modify a SCIM resource by replacing the resource's attributes at the service provider.<T extends ScimResource>
ReplaceRequestBuilder<T>replaceRequest(T resource)Build a request to modify a SCIM resource by replacing the resource's attributes at the service provider.<T extends ScimResource>
Tretrieve(String endpoint, String id, Class<T> cls)Retrieve a known SCIM resource from the service provider.<T extends ScimResource>
Tretrieve(URI url, Class<T> cls)Retrieve a known SCIM resource from the service provider.<T extends ScimResource>
Tretrieve(T resource)Retrieve a known SCIM resource from the service provider.RetrieveRequestBuilder.TypedretrieveRequest(String endpoint, String id)Build a request to retrieve a known SCIM resource from the service provider.RetrieveRequestBuilder.TypedretrieveRequest(URI url)Build a request to retrieve a known SCIM resource from the service provider.<T extends ScimResource>
RetrieveRequestBuilder.Generic<T>retrieveRequest(T resource)Build a request to retrieve a known SCIM resource from the service provider.<T extends ScimResource>
ListResponse<T>search(String endpoint, String filter, Class<T> clazz)Search for SCIM resources matching the SCIM filter provided.SearchRequestBuildersearchRequest(String endpoint)Build a request to query and retrieve resources of a single resource type from the service provider.
-
-
-
Field Detail
-
MEDIA_TYPE_SCIM_TYPE
@NotNull public static final jakarta.ws.rs.core.MediaType MEDIA_TYPE_SCIM_TYPE
The SCIM media type.
-
-
Constructor Detail
-
ScimService
public ScimService(@NotNull jakarta.ws.rs.client.WebTarget baseTarget)
Create a new client instance to the SCIM 2 service provider at the provided WebTarget. The path of the WebTarget should be the base URI SCIM 2 service (i.e.,https://host/scim/v2).- Parameters:
baseTarget- The web target for the base URI of the SCIM 2 service provider.
-
-
Method Detail
-
getServiceProviderConfig
@NotNull public ServiceProviderConfigResource getServiceProviderConfig() throws ScimException
Retrieve the service provider configuration.- Specified by:
getServiceProviderConfigin interfaceScimInterface- Returns:
- the service provider configuration.
- Throws:
ScimException- if an error occurs.
-
getResourceTypes
@NotNull public ListResponse<ResourceTypeResource> getResourceTypes() throws ScimException
Retrieve the resource types supported by the service provider.- Specified by:
getResourceTypesin interfaceScimInterface- Returns:
- The list of resource types supported by the service provider.
- Throws:
ScimException- if an error occurs.
-
getResourceType
@NotNull public ResourceTypeResource getResourceType(@NotNull String name) throws ScimException
Retrieve a known resource type supported by the service provider.- Specified by:
getResourceTypein interfaceScimInterface- Parameters:
name- The name of the resource type.- Returns:
- The resource type with the provided name.
- Throws:
ScimException- if an error occurs.
-
getSchemas
@NotNull public ListResponse<SchemaResource> getSchemas() throws ScimException
Retrieve the schemas supported by the service provider.- Specified by:
getSchemasin interfaceScimInterface- Returns:
- The list of schemas supported by the service provider.
- Throws:
ScimException- if an error occurs.
-
getSchema
@NotNull public SchemaResource getSchema(@NotNull String id) throws ScimException
Retrieve a known schema supported by the service provider.- Specified by:
getSchemain interfaceScimInterface- Parameters:
id- The schema URN.- Returns:
- The resource type with the provided URN.
- Throws:
ScimException- if an error occurs.
-
create
@NotNull public <T extends ScimResource> T create(@NotNull String endpoint, @NotNull T resource) throws ScimException
Create the provided new SCIM resource at the service provider.- Specified by:
createin interfaceScimInterface- Type Parameters:
T- The Java type of the resource.- Parameters:
endpoint- The resource endpoint such as: "Users" or "Groups" as defined by the associated resource type.resource- The new resource to create.- Returns:
- The successfully create SCIM resource.
- Throws:
ScimException- if an error occurs.
-
retrieve
@NotNull public <T extends ScimResource> T retrieve(@NotNull String endpoint, @NotNull String id, @NotNull Class<T> cls) throws ScimException
Retrieve a known SCIM resource from the service provider.- Specified by:
retrievein interfaceScimInterface- Type Parameters:
T- The Java type of the resource.- Parameters:
endpoint- The resource endpoint such as: "Users" or "Groups" as defined by the associated resource type.id- The resource identifier (for example the value of the "id" attribute).cls- The Java class object used to determine the type to return.- Returns:
- The successfully retrieved SCIM resource.
- Throws:
ScimException- if an error occurs.
-
retrieve
@NotNull public <T extends ScimResource> T retrieve(@NotNull URI url, @NotNull Class<T> cls) throws ScimException
Retrieve a known SCIM resource from the service provider.- Type Parameters:
T- The Java type of the resource.- Parameters:
url- The URL of the resource to retrieve.cls- The Java class object used to determine the type to return.- Returns:
- The successfully retrieved SCIM resource.
- Throws:
ScimException- if an error occurs.
-
retrieve
@NotNull public <T extends ScimResource> T retrieve(@NotNull T resource) throws ScimException
Retrieve a known SCIM resource from the service provider. If the service provider supports resource versioning and the resource has not been modified, the provided resource will be returned.- Specified by:
retrievein interfaceScimInterface- Type Parameters:
T- The Java type of the resource.- Parameters:
resource- The resource to retrieve.- Returns:
- The successfully retrieved SCIM resource.
- Throws:
ScimException- if an error occurs.
-
replace
@NotNull public <T extends ScimResource> T replace(@NotNull T resource) throws ScimException
Modify a SCIM resource by replacing the resource's attributes at the service provider. If the service provider supports resource versioning, the resource will only be modified if it has not been modified since it was retrieved.- Specified by:
replacein interfaceScimInterface- Type Parameters:
T- The Java type of the resource.- Parameters:
resource- The previously retrieved and revised resource.- Returns:
- The successfully replaced SCIM resource.
- Throws:
ScimException- if an error occurs.
-
delete
public void delete(@NotNull String endpoint, @NotNull String id) throws ScimException
Delete a SCIM resource at the service provider.- Specified by:
deletein interfaceScimInterface- Parameters:
endpoint- The resource endpoint such as: "Users" or "Groups" as defined by the associated resource type.id- The resource identifier (for example the value of the "id" attribute).- Throws:
ScimException- if an error occurs.
-
delete
public void delete(@NotNull URI url) throws ScimException
Delete a SCIM resource at the service provider.- Parameters:
url- The URL of the resource to delete.- Throws:
ScimException- if an error occurs.
-
delete
public <T extends ScimResource> void delete(@NotNull T resource) throws ScimException
Delete a SCIM resource at the service provider.- Specified by:
deletein interfaceScimInterface- Type Parameters:
T- The Java type of the resource.- Parameters:
resource- The resource to delete.- Throws:
ScimException- if an error occurs.
-
createRequest
@NotNull public <T extends ScimResource> CreateRequestBuilder<T> createRequest(@NotNull String endpoint, @NotNull T resource)
Build a request to create the provided new SCIM resource at the service provider.- Type Parameters:
T- The Java type of the resource.- Parameters:
endpoint- The resource endpoint such as: "Users" or "Groups" as defined by the associated resource type.resource- The new resource to create.- Returns:
- The request builder that may be used to specify additional request parameters and to invoke the request.
-
retrieveRequest
@NotNull public RetrieveRequestBuilder.Typed retrieveRequest(@NotNull String endpoint, @NotNull String id)
Build a request to retrieve a known SCIM resource from the service provider.- Parameters:
endpoint- The resource endpoint such as: "Users" or "Groups" as defined by the associated resource type.id- The resource identifier (for example the value of the "id" attribute).- Returns:
- The request builder that may be used to specify additional request parameters and to invoke the request.
-
retrieveRequest
@NotNull public RetrieveRequestBuilder.Typed retrieveRequest(@NotNull URI url)
Build a request to retrieve a known SCIM resource from the service provider.- Parameters:
url- The URL of the resource to retrieve.- Returns:
- The request builder that may be used to specify additional request parameters and to invoke the request.
-
retrieveRequest
@NotNull public <T extends ScimResource> RetrieveRequestBuilder.Generic<T> retrieveRequest(@NotNull T resource)
Build a request to retrieve a known SCIM resource from the service provider.- Type Parameters:
T- The Java type of the resource.- Parameters:
resource- The resource to retrieve.- Returns:
- The request builder that may be used to specify additional request parameters and to invoke the request.
-
searchRequest
@NotNull public SearchRequestBuilder searchRequest(@NotNull String endpoint)
Build a request to query and retrieve resources of a single resource type from the service provider.- Parameters:
endpoint- The resource endpoint such as: "Users" or "Groups" as defined by the associated resource type.- Returns:
- The request builder that may be used to specify additional request parameters and to invoke the request.
-
replaceRequest
@NotNull public <T extends ScimResource> ReplaceRequestBuilder<T> replaceRequest(@NotNull URI uri, @NotNull T resource)
Build a request to modify a SCIM resource by replacing the resource's attributes at the service provider.- Type Parameters:
T- The Java type of the resource.- Parameters:
uri- The URL of the resource to modify.resource- The resource to replace.- Returns:
- The request builder that may be used to specify additional request parameters and to invoke the request.
-
replaceRequest
@NotNull public <T extends ScimResource> ReplaceRequestBuilder<T> replaceRequest(@NotNull T resource)
Build a request to modify a SCIM resource by replacing the resource's attributes at the service provider.- Type Parameters:
T- The Java type of the resource.- Parameters:
resource- The previously retrieved and revised resource.- Returns:
- The request builder that may be used to specify additional request parameters and to invoke the request.
-
modify
@NotNull public <T extends ScimResource> T modify(@NotNull String endpoint, @NotNull String id, @NotNull PatchRequest patchRequest, @NotNull Class<T> clazz) throws ScimException
Modify a SCIM resource by updating one or more attributes using a sequence of operations to "add", "remove", or "replace" values. The service provider configuration may be used to discover service provider support for PATCH.- Specified by:
modifyin interfaceScimInterface- Type Parameters:
T- The Java type of the resource.- Parameters:
endpoint- The resource endpoint such as: "Users" or "Groups" as defined by the associated resource type.id- The resource identifier (for example the value of the "id" attribute).patchRequest- The patch request to use for the update.clazz- The class of the SCIM resource.- Returns:
- The modified resource.
- Throws:
ScimException- if an error occurs.
-
modifyRequest
@NotNull public ModifyRequestBuilder.Typed modifyRequest(@NotNull String endpoint, @NotNull String id)
Modify a SCIM resource by updating one or more attributes using a sequence of operations to "add", "remove", or "replace" values. The service provider configuration may be used to discover service provider support for PATCH.- Parameters:
endpoint- The resource endpoint such as: "Users" or "Groups" as defined by the associated resource type.id- The resource identifier (for example the value of the "id" attribute).- Returns:
- The request builder that may be used to specify additional request parameters and to invoke the request.
-
modifyRequest
@NotNull public ModifyRequestBuilder.Typed modifyRequest(@NotNull URI url)
Modify a SCIM resource by updating one or more attributes using a sequence of operations to "add", "remove", or "replace" values. The service provider configuration may be used to discover service provider support for PATCH.- Parameters:
url- The URL of the resource to modify.- Returns:
- The request builder that may be used to specify additional request parameters and to invoke the request.
-
modify
@NotNull public <T extends ScimResource> T modify(@NotNull T resource, @NotNull PatchRequest patchRequest) throws ScimException
Modify a SCIM resource by updating one or more attributes using a sequence of operations to "add", "remove", or "replace" values. The service provider configuration may be used to discover service provider support for PATCH.- Specified by:
modifyin interfaceScimInterface- Type Parameters:
T- The Java type of the resource.- Parameters:
resource- The resource to modify.patchRequest- the patch request to use for the update.- Returns:
- The modified resource.
- Throws:
ScimException- if an error occurs.
-
modifyRequest
@NotNull public <T extends ScimResource> ModifyRequestBuilder.Generic<T> modifyRequest(@NotNull T resource)
Modify a SCIM resource by updating one or more attributes using a sequence of operations to "add", "remove", or "replace" values. The service provider configuration may be used to discover service provider support for PATCH.- Type Parameters:
T- The Java type of the resource.- Parameters:
resource- The resource to modify.- Returns:
- The request builder that may be used to specify additional request parameters and to invoke the request.
-
deleteRequest
@NotNull public DeleteRequestBuilder deleteRequest(@NotNull String endpoint, @NotNull String id) throws ScimException
Build a request to delete a SCIM resource at the service provider.- Parameters:
endpoint- The resource endpoint such as: "Users" or "Groups" as defined by the associated resource type.id- The resource identifier (for example the value of the "id" attribute).- Returns:
- The request builder that may be used to specify additional request parameters and to invoke the request.
- Throws:
ScimException- if an error occurs.
-
deleteRequest
@NotNull public DeleteRequestBuilder deleteRequest(@NotNull URI url) throws ScimException
Build a request to delete a SCIM resource at the service provider.- Parameters:
url- The URL of the resource to delete.- Returns:
- The request builder that may be used to specify additional request parameters and to invoke the request.
- Throws:
ScimException- if an error occurs.
-
deleteRequest
@NotNull public <T extends ScimResource> DeleteRequestBuilder deleteRequest(@NotNull T resource) throws ScimException
Build a request to delete a SCIM resource at the service provider.- Type Parameters:
T- The Java type of the resource.- Parameters:
resource- The resource to delete.- Returns:
- The request builder that may be used to specify additional request parameters and to invoke the request.
- Throws:
ScimException- if an error occurs.
-
search
@NotNull public <T extends ScimResource> ListResponse<T> search(@NotNull String endpoint, @Nullable String filter, @NotNull Class<T> clazz) throws ScimException
Search for SCIM resources matching the SCIM filter provided.- Specified by:
searchin interfaceScimInterface- Type Parameters:
T- The SCIM resource type to return a list of.- Parameters:
endpoint- a SCIM resource type endpoint.filter- a SCIM filter string.clazz- the class representing the type of the SCIM resource.- Returns:
- a List of ScimResource objects matching the provided filter.
- Throws:
ScimException- if an error occurs.
-
-