Interface ResourceScopesResource


public interface ResourceScopesResource
Author:
Pedro Igor
  • Method Summary

    Modifier and Type
    Method
    Description
    jakarta.ws.rs.core.Response
    create(org.keycloak.representations.idm.authorization.ScopeRepresentation scope)
     
    org.keycloak.representations.idm.authorization.ScopeRepresentation
     
     
    List<org.keycloak.representations.idm.authorization.ScopeRepresentation>
     
  • Method Details

    • create

      @POST @Consumes("application/json") @Produces("application/json") jakarta.ws.rs.core.Response create(org.keycloak.representations.idm.authorization.ScopeRepresentation scope)
    • scope

      @Path("{id}") ResourceScopeResource scope(@PathParam("id") String id)
    • scopes

      @GET @Produces("application/json") List<org.keycloak.representations.idm.authorization.ScopeRepresentation> scopes()
    • findByName

      @Path("/search") @GET @Produces("application/json") org.keycloak.representations.idm.authorization.ScopeRepresentation findByName(@QueryParam("name") String name)