Class AvailableRoleMappingResource

java.lang.Object
org.keycloak.admin.ui.rest.RoleMappingResource
org.keycloak.admin.ui.rest.AvailableRoleMappingResource

public class AvailableRoleMappingResource extends RoleMappingResource
  • Constructor Details

  • Method Details

    • listAvailableClientScopeRoleMappings

      @GET @Path("/clientScopes/{id}") @Consumes("application/json") @Produces("application/json") public final List<ClientRole> listAvailableClientScopeRoleMappings(@PathParam("id") String id, @QueryParam("first") @DefaultValue("0") int first, @QueryParam("max") @DefaultValue("10") int max, @QueryParam("search") @DefaultValue("") String search)
    • listAvailableClientRoleMappings

      @GET @Path("/clients/{id}") @Consumes("application/json") @Produces("application/json") public final List<ClientRole> listAvailableClientRoleMappings(@PathParam("id") String id, @QueryParam("first") @DefaultValue("0") int first, @QueryParam("max") @DefaultValue("10") int max, @QueryParam("search") @DefaultValue("") String search)
    • listAvailableGroupRoleMappings

      @GET @Path("/groups/{id}") @Consumes("application/json") @Produces("application/json") public final List<ClientRole> listAvailableGroupRoleMappings(@PathParam("id") String id, @QueryParam("first") @DefaultValue("0") int first, @QueryParam("max") @DefaultValue("10") int max, @QueryParam("search") @DefaultValue("") String search)
    • listAvailableUserRoleMappings

      @GET @Path("/users/{id}") @Consumes("application/json") @Produces("application/json") public final List<ClientRole> listAvailableUserRoleMappings(@PathParam("id") String id, @QueryParam("first") @DefaultValue("0") int first, @QueryParam("max") @DefaultValue("10") int max, @QueryParam("search") @DefaultValue("") String search)
    • listAvailableRoleMappings

      @GET @Path("/roles/{id}") @Consumes("application/json") @Produces("application/json") public final List<ClientRole> listAvailableRoleMappings(@PathParam("id") String id, @QueryParam("first") @DefaultValue("0") int first, @QueryParam("max") @DefaultValue("10") int max, @QueryParam("search") @DefaultValue("") String search)