Interface ResourceScopesResource
public interface ResourceScopesResource
- Author:
- Pedro Igor
-
Method Summary
Modifier and TypeMethodDescriptionjakarta.ws.rs.core.Response
create
(ScopeRepresentation scope) findByName
(String name) scopes()
-
Method Details
-
create
@POST @Consumes("application/json") @Produces("application/json") jakarta.ws.rs.core.Response create(ScopeRepresentation scope) -
scope
-
scopes
-
findByName
@Path("/search") @GET @Produces("application/json") ScopeRepresentation findByName(@QueryParam("name") String name)
-