Interface UserPolicyResource


public interface UserPolicyResource
Author:
Pedro Igor
  • Method Summary

    Modifier and Type
    Method
    Description
    List<org.keycloak.representations.idm.authorization.PolicyRepresentation>
     
    List<org.keycloak.representations.idm.authorization.PolicyRepresentation>
     
    void
     
    List<org.keycloak.representations.idm.authorization.ResourceRepresentation>
     
    org.keycloak.representations.idm.authorization.UserPolicyRepresentation
     
    void
    update(org.keycloak.representations.idm.authorization.UserPolicyRepresentation representation)
     
  • Method Details

    • toRepresentation

      @GET @Produces("application/json") org.keycloak.representations.idm.authorization.UserPolicyRepresentation toRepresentation()
    • update

      @PUT @Consumes("application/json") void update(org.keycloak.representations.idm.authorization.UserPolicyRepresentation 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()