Interface UserResource
-
@Consumes("application/json") @Produces("application/json") public interface UserResource- Since:
- 0.9.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.Responseremove()StringresetPassword(org.keycloak.representations.idm.CredentialRepresentation credentialRepresentation)RoleMappingResourceroles()org.keycloak.representations.idm.UserRepresentationtoRepresentation()javax.ws.rs.core.Responseupdate(org.keycloak.representations.idm.UserRepresentation userRepresentation)
-
-
-
Method Detail
-
toRepresentation
@GET org.keycloak.representations.idm.UserRepresentation toRepresentation()
-
update
@PUT javax.ws.rs.core.Response update(org.keycloak.representations.idm.UserRepresentation userRepresentation)
-
remove
@DELETE javax.ws.rs.core.Response remove()
-
resetPassword
@PUT @Path("reset-password") String resetPassword(org.keycloak.representations.idm.CredentialRepresentation credentialRepresentation)
-
roles
@Path("role-mappings") RoleMappingResource roles()
-
-