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