@Path(value="v2/Users") public interface UserService extends ReadService<SCIMUser>
Modifier and Type | Method and Description |
---|---|
javax.ws.rs.core.Response |
create(SCIMUser user) |
javax.ws.rs.core.Response |
delete(@NotNull String id) |
javax.ws.rs.core.Response |
replace(@NotNull String id,
SCIMUser user) |
javax.ws.rs.core.Response |
update(@NotNull String id) |
get, search, search
@POST @Produces(value="application/scim+json") @Consumes(value="application/scim+json") javax.ws.rs.core.Response create(SCIMUser user)
@Path(value="{id}") @Produces(value="application/scim+json") @Consumes(value="application/scim+json") javax.ws.rs.core.Response update(@NotNull @PathParam(value="id") @NotNull String id)
@PUT @Path(value="{id}") @Produces(value="application/scim+json") @Consumes(value="application/scim+json") javax.ws.rs.core.Response replace(@NotNull @PathParam(value="id") @NotNull String id, SCIMUser user)
@DELETE @Path(value="{id}") @Produces(value="application/scim+json") javax.ws.rs.core.Response delete(@NotNull @PathParam(value="id") @NotNull String id)
Copyright © 2010–2023 The Apache Software Foundation. All rights reserved.