Interface UserPoliciesResource


public interface UserPoliciesResource
Author:
Pedro Igor
  • Method Summary

    Modifier and Type
    Method
    Description
    jakarta.ws.rs.core.Response
    create(org.keycloak.representations.idm.authorization.UserPolicyRepresentation representation)
     
     
    org.keycloak.representations.idm.authorization.UserPolicyRepresentation
     
  • Method Details

    • create

      @POST @Consumes("application/json") @Produces("application/json") jakarta.ws.rs.core.Response create(org.keycloak.representations.idm.authorization.UserPolicyRepresentation representation)
    • findById

      @Path("{id}") UserPolicyResource findById(@PathParam("id") String id)
    • findByName

      @Path("/search") @GET @Produces("application/json") org.keycloak.representations.idm.authorization.UserPolicyRepresentation findByName(@QueryParam("name") String name)