Interface RolePolicyResource
public interface RolePolicyResource
- Author:
- Pedro Igor
-
Method Summary
Modifier and TypeMethodDescriptionList<org.keycloak.representations.idm.authorization.PolicyRepresentation>List<org.keycloak.representations.idm.authorization.PolicyRepresentation>voidremove()List<org.keycloak.representations.idm.authorization.ResourceRepresentation>org.keycloak.representations.idm.authorization.RolePolicyRepresentationvoidupdate(org.keycloak.representations.idm.authorization.RolePolicyRepresentation representation)
-
Method Details
-
toRepresentation
@GET @Produces("application/json") org.keycloak.representations.idm.authorization.RolePolicyRepresentation toRepresentation() -
update
@PUT @Consumes("application/json") void update(org.keycloak.representations.idm.authorization.RolePolicyRepresentation representation) -
remove
@DELETE void remove() -
associatedPolicies
@Path("/associatedPolicies") @GET @Produces("application/json") List<org.keycloak.representations.idm.authorization.PolicyRepresentation> associatedPolicies() -
dependentPolicies
@Path("/dependentPolicies") @GET @Produces("application/json") List<org.keycloak.representations.idm.authorization.PolicyRepresentation> dependentPolicies() -
resources
@Path("/resources") @GET @Produces("application/json") List<org.keycloak.representations.idm.authorization.ResourceRepresentation> resources()
-