public interface RoleResource
@PUT @Path(value="/management/permissions") @Consumes(value="application/json") @Produces(value="application/json") ManagementPermissionReference setPermissions(ManagementPermissionRepresentation status)
ManagementPermissionReference
.status
- status request to apply@GET @Path(value="/management/permissions") @Produces(value="application/json") ManagementPermissionReference getPermissions()
@GET @Produces(value="application/json") RoleRepresentation toRepresentation()
@PUT @Consumes(value="application/json") void update(RoleRepresentation roleRepresentation)
@DELETE void remove()
@GET @Path(value="composites") @Produces(value="application/json") Set<RoleRepresentation> getRoleComposites()
@GET @Path(value="composites/realm") @Produces(value="application/json") Set<RoleRepresentation> getRealmRoleComposites()
@GET @Path(value="composites/clients/{appName}") @Produces(value="application/json") Set<RoleRepresentation> getClientRoleComposites(@PathParam(value="appName") String appName)
@POST @Path(value="composites") @Consumes(value="application/json") void addComposites(List<RoleRepresentation> rolesToAdd)
@DELETE @Path(value="composites") @Consumes(value="application/json") void deleteComposites(List<RoleRepresentation> rolesToRemove)
@GET @Path(value="users") @Produces(value="application/json") Set<UserRepresentation> getRoleUserMembers()
@GET @Path(value="users") @Produces(value="application/json") Set<UserRepresentation> getRoleUserMembers(@QueryParam(value="first") Integer firstResult, @QueryParam(value="max") Integer maxResults)
firstResult
- Pagination offsetmaxResults
- Pagination sizeCopyright © 2019 JBoss by Red Hat. All rights reserved.