Class GroupResource

java.lang.Object
org.keycloak.services.resources.admin.GroupResource

public class GroupResource extends Object
Author:
Bill Burke
  • Constructor Details

  • Method Details

    • getGroup

      @GET @Produces("application/json") public GroupRepresentation 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("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

      @Path("role-mappings") public RoleMapperResource 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 offset
      maxResults - 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