Interface OrganizationGroupResource
public interface OrganizationGroupResource
Resource for managing a single organization group.
-
Method Summary
Modifier and TypeMethodDescriptionvoidjakarta.ws.rs.core.ResponseaddSubGroup(org.keycloak.representations.idm.GroupRepresentation rep) voiddelete()List<org.keycloak.representations.idm.MemberRepresentation>getMembers(Integer first, Integer max, Boolean briefRepresentation) List<org.keycloak.representations.idm.GroupRepresentation>getSubGroups(String search, Boolean exact, Integer first, Integer max) voidremoveMember(String userId) org.keycloak.representations.idm.GroupRepresentationtoRepresentation(boolean subGroupsCount) jakarta.ws.rs.core.Responseupdate(org.keycloak.representations.idm.GroupRepresentation rep)
-
Method Details
-
toRepresentation
@GET @Produces("application/json") org.keycloak.representations.idm.GroupRepresentation toRepresentation(@QueryParam("subGroupsCount") boolean subGroupsCount) -
update
@PUT @Consumes("application/json") jakarta.ws.rs.core.Response update(org.keycloak.representations.idm.GroupRepresentation rep) -
delete
@DELETE void delete() -
getSubGroups
-
addSubGroup
@POST @Path("children") @Consumes("application/json") jakarta.ws.rs.core.Response addSubGroup(org.keycloak.representations.idm.GroupRepresentation rep) -
getMembers
-
addMember
-
removeMember
-