Interface ResourceScopesResource
public interface ResourceScopesResource
- Author:
- Pedro Igor
-
Method Summary
Modifier and TypeMethodDescriptionjakarta.ws.rs.core.Responsecreate(org.keycloak.representations.idm.authorization.ScopeRepresentation scope) org.keycloak.representations.idm.authorization.ScopeRepresentationfindByName(String name) List<org.keycloak.representations.idm.authorization.ScopeRepresentation>scopes()
-
Method Details
-
create
@POST @Consumes("application/json") @Produces("application/json") jakarta.ws.rs.core.Response create(org.keycloak.representations.idm.authorization.ScopeRepresentation scope) -
scope
-
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)
-