Interface RoleScopeResource


@Consumes("application/json") @Produces("application/json") public interface RoleScopeResource
Author:
rodrigo.sasaki@icarros.com.br
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    add(List<org.keycloak.representations.idm.RoleRepresentation> rolesToAdd)
     
    List<org.keycloak.representations.idm.RoleRepresentation>
     
    List<org.keycloak.representations.idm.RoleRepresentation>
     
    List<org.keycloak.representations.idm.RoleRepresentation>
     
    List<org.keycloak.representations.idm.RoleRepresentation>
    listEffective(boolean briefRepresentation)
     
    void
    remove(List<org.keycloak.representations.idm.RoleRepresentation> rolesToRemove)
     
  • Method Details

    • listAll

      @GET List<org.keycloak.representations.idm.RoleRepresentation> listAll()
    • listAvailable

      @GET @Path("available") List<org.keycloak.representations.idm.RoleRepresentation> listAvailable()
    • listEffective

      @GET @Path("composite") List<org.keycloak.representations.idm.RoleRepresentation> listEffective()
    • listEffective

      @GET @Path("composite") List<org.keycloak.representations.idm.RoleRepresentation> listEffective(@QueryParam("briefRepresentation") @DefaultValue("true") boolean briefRepresentation)
    • add

      @POST void add(List<org.keycloak.representations.idm.RoleRepresentation> rolesToAdd)
    • remove

      @DELETE void remove(List<org.keycloak.representations.idm.RoleRepresentation> rolesToRemove)