Package org.gluu.oxauth.uma.ws.rs
Class UmaGatheringWS
java.lang.Object
org.gluu.oxauth.uma.ws.rs.UmaGatheringWS
Claims-Gathering Endpoint.
- Version:
- August 9, 2017
- Author:
- yuriyz
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionjavax.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) javax.ws.rs.core.Response
getGatherClaims
(String clientId, String ticket, String claimRedirectUri, String state, Boolean reset, Boolean authenticationRedirect, javax.servlet.http.HttpServletRequest httpRequest, javax.servlet.http.HttpServletResponse httpResponse) javax.ws.rs.core.Response
postGatherClaims
(String clientId, String ticket, String claimRedirectUri, String state, Boolean reset, Boolean authenticationRedirect, javax.servlet.http.HttpServletRequest httpRequest, javax.servlet.http.HttpServletResponse httpResponse)
-
Constructor Details
-
UmaGatheringWS
public UmaGatheringWS()
-
-
Method Details
-
gatherClaims
-
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)
-