@Path(value="Schemas") public class SchemasEndpoint extends Object
| Constructor and Description |
|---|
SchemasEndpoint() |
| Modifier and Type | Method and Description |
|---|---|
com.unboundid.scim2.common.ScimResource |
get(String id,
javax.ws.rs.core.UriInfo uriInfo)
Service SCIM request to retrieve a schema by ID.
|
Collection<com.unboundid.scim2.common.types.SchemaResource> |
getSchemas()
Retrieve all schemas defined at the service provider.
|
com.unboundid.scim2.common.messages.ListResponse<com.unboundid.scim2.common.GenericScimResource> |
search(String filterString,
javax.ws.rs.core.UriInfo uriInfo)
Service SCIM request to retrieve all schemas defined at the
service provider using GET.
|
public SchemasEndpoint()
@GET
@Produces(value={"application/scim+json","application/json"})
public com.unboundid.scim2.common.messages.ListResponse<com.unboundid.scim2.common.GenericScimResource> search(@QueryParam(value="filter")
String filterString,
@Context
javax.ws.rs.core.UriInfo uriInfo)
throws com.unboundid.scim2.common.exceptions.ScimException
filterString - The filter string used to request a subset of
resources. Will throw 403 Forbidden if specified.uriInfo - UriInfo of the request.com.unboundid.scim2.common.exceptions.ScimException - If an error occurs.@Path(value="{id}")
@GET
@Produces(value={"application/scim+json","application/json"})
public com.unboundid.scim2.common.ScimResource get(@PathParam(value="id")
String id,
@Context
javax.ws.rs.core.UriInfo uriInfo)
throws com.unboundid.scim2.common.exceptions.ScimException
id - The ID of the schema to retrieve.uriInfo - UriInfo of the request.com.unboundid.scim2.common.exceptions.ScimException - If an error occurs.public Collection<com.unboundid.scim2.common.types.SchemaResource> getSchemas() throws com.unboundid.scim2.common.exceptions.ScimException
com.unboundid.scim2.common.exceptions.ScimException - If an error occurs.Copyright © 2015–2018 Ping Identity Corporation. All rights reserved.