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