Class UmaGatheringWS

java.lang.Object
org.gluu.oxauth.uma.ws.rs.UmaGatheringWS

@Path("/uma/gather_claims") public class UmaGatheringWS extends Object
Claims-Gathering Endpoint.
Version:
August 9, 2017
Author:
yuriyz
  • Constructor Details

    • UmaGatheringWS

      public UmaGatheringWS()
  • Method Details

    • gatherClaims

      public javax.ws.rs.core.Response gatherClaims(String clientId, String ticket, String claimRedirectUri, String state, Boolean reset, Boolean authenticationRedirect, javax.servlet.http.HttpServletRequest httpRequest, javax.servlet.http.HttpServletResponse httpResponse)
    • getGatherClaims

      @GET @Produces("application/json") public javax.ws.rs.core.Response getGatherClaims(@QueryParam("client_id") String clientId, @QueryParam("ticket") String ticket, @QueryParam("claims_redirect_uri") String claimRedirectUri, @QueryParam("state") String state, @QueryParam("reset") Boolean reset, @QueryParam("authentication") Boolean authenticationRedirect, @Context javax.servlet.http.HttpServletRequest httpRequest, @Context javax.servlet.http.HttpServletResponse httpResponse)
    • postGatherClaims

      @POST @Consumes("application/json") @Produces("application/json") public javax.ws.rs.core.Response postGatherClaims(@FormParam("client_id") String clientId, @FormParam("ticket") String ticket, @FormParam("claims_redirect_uri") String claimRedirectUri, @FormParam("state") String state, @FormParam("reset") Boolean reset, @FormParam("authentication") Boolean authenticationRedirect, @Context javax.servlet.http.HttpServletRequest httpRequest, @Context javax.servlet.http.HttpServletResponse httpResponse)