Interface ClientScopesResource


public interface ClientScopesResource
Author:
rodrigo.sasaki@icarros.com.br
  • Method Summary

    Modifier and Type
    Method
    Description
    jakarta.ws.rs.core.Response
    create(org.keycloak.representations.idm.ClientScopeRepresentation clientScopeRepresentation)
     
    List<org.keycloak.representations.idm.ClientScopeRepresentation>
     
    get(String id)
     
  • Method Details

    • get

      @Path("{id}") ClientScopeResource get(@PathParam("id") String id)
    • create

      @POST @Consumes("application/json") jakarta.ws.rs.core.Response create(org.keycloak.representations.idm.ClientScopeRepresentation clientScopeRepresentation)
    • findAll

      @GET @Produces("application/json") List<org.keycloak.representations.idm.ClientScopeRepresentation> findAll()