Class GroupResource
java.lang.Object
org.keycloak.services.resources.admin.GroupResource
- Author:
- Bill Burke
-
Constructor Summary
ConstructorDescriptionGroupResource
(RealmModel realm, GroupModel group, KeycloakSession session, AdminPermissionEvaluator auth, AdminEventBuilder adminEvent) -
Method Summary
Modifier and TypeMethodDescriptionjakarta.ws.rs.core.Response
Set or create child.void
getGroup()
Return object stating whether client Authorization permissions have been initialized or not and a referencegetMembers
(Integer firstResult, Integer maxResults, Boolean briefRepresentation) Get users Returns a stream of users, filtered according to query parametersReturn object stating whether client Authorization permissions have been initialized or not and a referencetoMgmtRef
(GroupModel group, AdminPermissionManagement permissions) jakarta.ws.rs.core.Response
Update group, ignores subgroups.static void
updateGroup
(GroupRepresentation rep, GroupModel model, RealmModel realm, KeycloakSession session)
-
Constructor Details
-
GroupResource
public GroupResource(RealmModel realm, GroupModel group, KeycloakSession session, AdminPermissionEvaluator auth, AdminEventBuilder adminEvent)
-
-
Method Details
-
getGroup
- Returns:
-
updateGroup
@PUT @Consumes("application/json") public jakarta.ws.rs.core.Response updateGroup(GroupRepresentation rep) Update group, ignores subgroups.- Parameters:
rep
-
-
deleteGroup
@DELETE public void deleteGroup() -
getSubGroups
@GET @Path("children") @Produces("application/json") public Stream<GroupRepresentation> getSubGroups(@QueryParam("search") String search, @QueryParam("exact") Boolean exact, @QueryParam("first") @DefaultValue("0") Integer first, @QueryParam("max") @DefaultValue("10") Integer max, @QueryParam("briefRepresentation") @DefaultValue("false") Boolean briefRepresentation) -
addChild
@POST @Path("children") @Produces("application/json") @Consumes("application/json") public jakarta.ws.rs.core.Response addChild(GroupRepresentation rep) Set or create child. This will just set the parent if it exists. Create it and set the parent if the group doesn't exist.- Parameters:
rep
-
-
updateGroup
public static void updateGroup(GroupRepresentation rep, GroupModel model, RealmModel realm, KeycloakSession session) -
getRoleMappings
-
getMembers
@GET @Path("members") @Produces("application/json") public Stream<UserRepresentation> getMembers(@QueryParam("first") Integer firstResult, @QueryParam("max") Integer maxResults, @QueryParam("briefRepresentation") Boolean briefRepresentation) Get users Returns a stream of users, filtered according to query parameters- Parameters:
firstResult
- Pagination offsetmaxResults
- Maximum results size (defaults to 100)briefRepresentation
- Only return basic information (only guaranteed to return id, username, created, first and last name, email, enabled state, email verification state, federation link, and access. Note that it means that namely user attributes, required actions, and not before are not returned.)- Returns:
- a non-null
Stream
of users
-
getManagementPermissions
@Path("management/permissions") @GET @Produces("application/json") public ManagementPermissionReference getManagementPermissions()Return object stating whether client Authorization permissions have been initialized or not and a reference- Returns:
-
toMgmtRef
public static ManagementPermissionReference toMgmtRef(GroupModel group, AdminPermissionManagement permissions) -
setManagementPermissionsEnabled
@Path("management/permissions") @PUT @Produces("application/json") @Consumes("application/json") public ManagementPermissionReference setManagementPermissionsEnabled(ManagementPermissionReference ref) Return object stating whether client Authorization permissions have been initialized or not and a reference- Returns:
- initialized manage permissions reference
-