Searched defs:rawURL (Results 1 - 2 of 2) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAuthD.java1037 * @param rawURL Raw url with out real protocol
1043 String rawURL,
1045 if (rawURL.contains("%")) {
1049 if ((index = rawURL.indexOf("%protocol")) != -1) {
1050 sb.append(rawURL.substring(0,index));
1066 sb.append(rawURL.substring(index+"%protocol".length()));
1067 rawURL = sb.toString();
1069 if ((index = rawURL.indexOf("%host")) != -1) {
1072 sb.append(rawURL.substring(0,index));
1088 sb.append(rawURL
1042 processDynamicVariables( String rawURL, HttpServletRequest servletRequest) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAuthD.java987 * @param rawURL Raw url with out real protocol
993 String rawURL,
995 if (rawURL.contains("%")) {
999 if ((index = rawURL.indexOf("%protocol")) != -1) {
1000 sb.append(rawURL.substring(0,index));
1016 sb.append(rawURL.substring(index+"%protocol".length()));
1017 rawURL = sb.toString();
1019 if ((index = rawURL.indexOf("%host")) != -1) {
1022 sb.append(rawURL.substring(0,index));
1038 sb.append(rawURL
992 processDynamicVariables( String rawURL, HttpServletRequest servletRequest) argument
[all...]

Completed in 24 milliseconds