Class UmaGatheringWS


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

      • UmaGatheringWS

        public UmaGatheringWS()
    • Method Detail

      • gatherClaims

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

        @GET
        @Produces("application/json")
        public jakarta.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
                                                           jakarta.servlet.http.HttpServletRequest httpRequest,
                                                           @Context
                                                           jakarta.servlet.http.HttpServletResponse httpResponse)
      • postGatherClaims

        @POST
        @Consumes("application/json")
        @Produces("application/json")
        public jakarta.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
                                                            jakarta.servlet.http.HttpServletRequest httpRequest,
                                                            @Context
                                                            jakarta.servlet.http.HttpServletResponse httpResponse)