Interface UsersResource
-
public interface UsersResource- Since:
- 0.9.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.Responsecreate(org.keycloak.representations.idm.UserRepresentation userRepresentation)UserResourceget(String id)List<org.keycloak.representations.idm.UserRepresentation>list()List<org.keycloak.representations.idm.UserRepresentation>search(String search, Integer firstResult, Integer maxResults)List<org.keycloak.representations.idm.UserRepresentation>search(String username, String firstName, String lastName, String email, Integer firstResult, Integer maxResults)
-
-
-
Method Detail
-
list
@GET @Produces("application/json") List<org.keycloak.representations.idm.UserRepresentation> list()
-
search
@GET @Produces("application/json") List<org.keycloak.representations.idm.UserRepresentation> search(@QueryParam("username") String username, @QueryParam("firstName") String firstName, @QueryParam("lastName") String lastName, @QueryParam("email") String email, @QueryParam("first") Integer firstResult, @QueryParam("max") Integer maxResults)
-
search
@GET @Produces("application/json") List<org.keycloak.representations.idm.UserRepresentation> search(@QueryParam("search") String search, @QueryParam("first") Integer firstResult, @QueryParam("max") Integer maxResults)
-
create
@POST @Consumes("application/json") javax.ws.rs.core.Response create(org.keycloak.representations.idm.UserRepresentation userRepresentation)
-
get
@Path("{id}") UserResource get(@PathParam("id") String id)
-
-