Lines Matching defs:redirectURL

204     private static final String REDIRECT_URL = "redirectURL";
332 String redirectURL = getRedirectURL(sfe);
333 if(redirectURL == null) {
338 redirectURL, responseID, connectTo, certAlias, soapAction,
506 String redirectURL, String messageID, String connectTo,
513 + "entering with redirectURL="
514 + redirectURL);
517 //redirectURL should not have ReturnToURL parameter
518 if (!(redirectURL.indexOf(RETURN_TO_URL + "=") == -1)) {
521 + "Invalid redirectURL - illegal parameter "
523 + " in redirectURL=" + redirectURL);
529 //redirectURL should not have IDP parameter
530 if (!(redirectURL.indexOf(IDP + "=") == -1)) {
533 + "Invalid redirectURL - illegal parameter:"
535 + " in redirectURL=" + redirectURL);
541 //redirectURL should be https
543 && (redirectURL.indexOf("https") != 0) ) {
549 + " in redirectURL=" + redirectURL);
554 //redirectURL should point to connectTo host
557 && !checkRedirectHost(redirectURL, connectTo)) {
562 + " in redirectURL=" + redirectURL
582 redirectURL = redirectURL +"&"+ RETURN_TO_URL + "="
586 + "redirecting user agent to redirectURL= "
587 + redirectURL);
590 httpResponse.sendRedirect(redirectURL);
599 + "redirected user agent to redirectURL= "
600 + redirectURL);
1169 String redirectURL = null;
1188 redirectURL = rre.getRedirectURL();
1191 if (redirectURL == null) {
1194 return redirectURL;
1197 private boolean checkRedirectHost(String redirectURL, String connectTo) {
1200 URL redirectToURL = new URL(redirectURL);
1209 + "redirectURL not a valid URL"
1210 + " :redirectURL=" + redirectURL