/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/servlet/ |
H A D | WSFederationActionFactory.java | 116 String wctx = request.getParameter(WSFederationConstants.WCTX); 117 if (wctx!=null && debug.messageEnabled()) { 118 debug.message(classMethod + WSFederationConstants.WCTX + "="+wctx); 138 wtrealm, wct, wctx, wreply); 148 wctx, wreply); 168 action = new RPSigninResponse(request,response,wresult,wctx);
|
H A D | RPSigninRequest.java | 63 String wctx; field in class:RPSigninRequest 72 * @param wctx the wctx parameter from the signin request 77 String wct, String wctx, String wreply) { 81 this.wctx = wctx; 97 if (wctx == null || wctx.length() == 0){ 99 wctx = (wreply != null && (wreply.length() > 0)) ? 269 if (wctx ! 75 RPSigninRequest(HttpServletRequest request, HttpServletResponse response, String whr, String wct, String wctx, String wreply) argument [all...] |
H A D | RPSigninResponse.java | 67 private String wctx; field in class:RPSigninResponse 73 * @param wctx wctx parameter from request 76 HttpServletResponse response, String wresult, String wctx) { 79 this.wctx = wctx; 235 if (wctx != null) { 236 target = WSFederationUtils.removeReplyURL(wctx); 242 String[] data = {wctx, 75 RPSigninResponse(HttpServletRequest request, HttpServletResponse response, String wresult, String wctx) argument
|
H A D | IPSigninRequest.java | 77 String wctx; field in class:IPSigninRequest 87 * @param wctx the wctx parameter from the signin request 92 String wctx, String wreply) { 97 this.wctx = wctx; 480 request.setAttribute(WSFederationConstants.POST_WCTX, ESAPI.encoder().encodeForHTML(wctx)); 90 IPSigninRequest(HttpServletRequest request, HttpServletResponse response, String whr, String wtrealm, String wct, String wctx, String wreply) argument
|
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/servlet/ |
H A D | WSFederationActionFactory.java | 125 String wctx = request.getParameter(WSFederationConstants.WCTX); 126 if (wctx!=null && debug.messageEnabled()) { 127 debug.message(classMethod + WSFederationConstants.WCTX + "="+wctx); 146 wtrealm, wct, wctx, wreply); 156 wctx, wreply); 176 action = new RPSigninResponse(request,response,wresult,wctx);
|
H A D | RPSigninRequest.java | 65 String wctx; field in class:RPSigninRequest 74 * @param wctx the wctx parameter from the signin request 79 String wct, String wctx, String wreply) { 83 this.wctx = wctx; 99 if (wctx == null || wctx.length() == 0){ 101 wctx = (wreply != null && (wreply.length() > 0)) ? 271 if (wctx ! 77 RPSigninRequest(HttpServletRequest request, HttpServletResponse response, String whr, String wct, String wctx, String wreply) argument [all...] |
H A D | RPSigninResponse.java | 67 private String wctx; field in class:RPSigninResponse 73 * @param wctx wctx parameter from request 76 HttpServletResponse response, String wresult, String wctx) { 79 this.wctx = wctx; 235 if (wctx != null) { 236 target = WSFederationUtils.removeReplyURL(wctx); 242 String[] data = {wctx, 75 RPSigninResponse(HttpServletRequest request, HttpServletResponse response, String wresult, String wctx) argument
|
H A D | IPSigninRequest.java | 70 String wctx; field in class:IPSigninRequest 80 * @param wctx the wctx parameter from the signin request 85 String wctx, String wreply) { 90 this.wctx = wctx; 359 request.setAttribute(WSFederationConstants.POST_WCTX, ESAPI.encoder().encodeForHTML(wctx)); 83 IPSigninRequest(HttpServletRequest request, HttpServletResponse response, String whr, String wtrealm, String wct, String wctx, String wreply) argument
|
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/common/ |
H A D | WSFederationUtils.java | 84 * Map from reply URL to wctx parameter. 227 * Put a reply URL in the wctx->wreply map. 229 * @return value for WS-Federation context parameter (wctx). 232 String wctx = SAML2Utils.generateID(); 235 wctxMap.put(wctx,wreply); 237 return wctx; 241 * Remove and return a reply URL from the wctx->wreply map. 242 * @param wctx WS-Federation context parameter 245 public static String removeReplyURL(String wctx) { argument 249 wreply = (String) wctxMap.remove(wctx); [all...] |
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/common/ |
H A D | WSFederationUtils.java | 97 * Map from reply URL to wctx parameter. 240 * Put a reply URL in the wctx->wreply map. 242 * @return value for WS-Federation context parameter (wctx). 245 String wctx = SAML2Utils.generateID(); 248 wctxMap.put(wctx,wreply); 250 return wctx; 254 * Remove and return a reply URL from the wctx->wreply map. 255 * @param wctx WS-Federation context parameter 258 public static String removeReplyURL(String wctx) { argument 262 wreply = (String) wctxMap.remove(wctx); [all...] |
/forgerock/openidm-v4/openidm-zip/src/main/resources/samples/scriptedazure/tools/shared/ |
H A D | AzureADOAuth2HttpClientFactory.groovy | 281 final String wctx = StringUtils.substringBefore( 282 StringUtils.substringAfter(samlPage, "<input type=\"hidden\" name=\"wctx\" id=\"wctx\" value=\""), 291 data.add(new BasicNameValuePair("wctx", wctx));
|