Interface ScopePermissionsResource


public interface ScopePermissionsResource
Author:
Pedro Igor
  • Method Summary

    Modifier and Type
    Method
    Description
    jakarta.ws.rs.core.Response
    create(org.keycloak.representations.idm.authorization.ScopePermissionRepresentation representation)
     
    List<org.keycloak.representations.idm.authorization.ScopePermissionRepresentation>
    findAll(String id, String name, String resource, Integer firstResult, Integer maxResult)
     
     
    org.keycloak.representations.idm.authorization.ScopePermissionRepresentation
     
  • Method Details

    • create

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

      @Path("{id}") ScopePermissionResource findById(@PathParam("id") String id)
    • findByName

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

      @GET @Produces("application/json") List<org.keycloak.representations.idm.authorization.ScopePermissionRepresentation> findAll(@QueryParam("policyId") String id, @QueryParam("name") String name, @QueryParam("resource") String resource, @QueryParam("first") Integer firstResult, @QueryParam("max") Integer maxResult)