Interface ResourceScopeResource
-
public interface ResourceScopeResource
- Author:
- Pedro Igor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<PolicyRepresentation>
permissions()
void
remove()
ScopeRepresentation
toRepresentation()
void
update(ScopeRepresentation scope)
-
-
-
Method Detail
-
toRepresentation
@GET @Produces("application/json") ScopeRepresentation toRepresentation()
-
update
@PUT @Consumes("application/json") void update(ScopeRepresentation scope)
-
remove
@DELETE void remove()
-
permissions
@Path("/permissions") @GET @Produces("application/json") List<PolicyRepresentation> permissions()
-
-