public interface UsersResource
Modifier and Type | Method and Description |
---|---|
javax.ws.rs.core.Response |
create(org.keycloak.representations.idm.UserRepresentation userRepresentation) |
UserResource |
get(String id) |
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) |
@GET @Produces(value="application/json") List<org.keycloak.representations.idm.UserRepresentation> search(@QueryParam(value="username") String username, @QueryParam(value="firstName") String firstName, @QueryParam(value="lastName") String lastName, @QueryParam(value="email") String email, @QueryParam(value="first") Integer firstResult, @QueryParam(value="max") Integer maxResults)
@GET @Produces(value="application/json") List<org.keycloak.representations.idm.UserRepresentation> search(@QueryParam(value="search") String search, @QueryParam(value="first") Integer firstResult, @QueryParam(value="max") Integer maxResults)
@POST @Consumes(value="application/json") javax.ws.rs.core.Response create(org.keycloak.representations.idm.UserRepresentation userRepresentation)
@Path(value="{id}") UserResource get(@PathParam(value="id") String id)
Copyright © 2012–2020 JBoss by Red Hat. All rights reserved.