@Path(value="ResourceTypes") public class ResourceTypesEndpoint extends Object
| Constructor and Description |
|---|
ResourceTypesEndpoint() |
| 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 resource type by ID.
|
Collection<com.unboundid.scim2.common.types.ResourceTypeResource> |
getResourceTypes()
Retrieve all resource types 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 resource types defined at the
service provider using GET.
|
public ResourceTypesEndpoint()
@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 resource type to retrieve.uriInfo - UriInfo of the request.com.unboundid.scim2.common.exceptions.ScimException - If an error occurs.public Collection<com.unboundid.scim2.common.types.ResourceTypeResource> getResourceTypes() 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.