public interface ReadService<R extends SCIMResource>
Modifier and Type | Method and Description |
---|---|
R |
get(@NotNull String id,
String attributes,
String excludedAttributes) |
ListResponse<R> |
search(SCIMSearchRequest request) |
ListResponse<R> |
search(String attributes,
String excludedAttributes,
String filter,
String sortBy,
SortOrder sortOrder,
Integer startIndex,
Integer count) |
@GET @Path(value="{id}") @Produces(value="application/scim+json") R get(@NotNull @PathParam(value="id") @NotNull String id, @QueryParam(value="attributes") String attributes, @QueryParam(value="excludedAttributes") String excludedAttributes)
@GET @Produces(value="application/scim+json") ListResponse<R> search(@QueryParam(value="attributes") String attributes, @QueryParam(value="excludedAttributes") String excludedAttributes, @QueryParam(value="filter") String filter, @QueryParam(value="sortBy") String sortBy, @QueryParam(value="sortOrder") SortOrder sortOrder, @QueryParam(value="startIndex") Integer startIndex, @QueryParam(value="count") Integer count)
@POST @Path(value=".search") @Produces(value="application/scim+json") @Consumes(value="application/scim+json") ListResponse<R> search(SCIMSearchRequest request)
Copyright © 2010–2023 The Apache Software Foundation. All rights reserved.