Searched refs:authURL (Results 1 - 18 of 18) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/
H A DAuthContext.java155 private URL authURL = null; field in class:AuthContext
236 authURL = url;
306 authURL = url;
615 authURL = sessionCache.getSession(new SessionID(ssoTokenID)).getSessionServiceURL();
621 if (authURL != null) {
622 authServiceURL = getAuthServiceURL(authURL.getProtocol(),
623 authURL.getHost(), Integer.toString(authURL.getPort()),
624 authURL.getPath());
650 if (authURL
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/
H A DAuthContext.java155 private URL authURL = null; field in class:AuthContext
236 authURL = url;
306 authURL = url;
615 authURL = sessionCache.getSession(new SessionID(ssoTokenID)).getSessionServiceURL();
621 if (authURL != null) {
622 authServiceURL = getAuthServiceURL(authURL.getProtocol(),
623 authURL.getHost(), Integer.toString(authURL.getPort()),
650 if (authURL == null) {
651 // failover when authURL i
[all...]
/forgerock/openam-v13/openam-tools/openam-diagnostics/openam-diagnostics-plugins/src/main/java/com/sun/identity/diagnostic/plugin/services/agent/
H A DJ2EEAgentConfigValidator.java86 String authURL=getBaseUrlStr(SystemProperties.get(AM_NAMING_URL)) +
90 RESTResponse response = callServiceURL(authURL, data1);
H A DWebAgentConfigValidator.java84 String authURL=
89 RESTResponse response = callServiceURL(authURL, data1);
/forgerock/openam-v13/openam-tools/openam-diagnostics/openam-diagnostics-plugins/src/main/java/com/sun/identity/diagnostic/plugin/services/reports/
H A DJ2EEAgentConfigReport.java90 String authURL= getBaseUrlStr(
98 RESTResponse response = callServiceURL(authURL, data1);
H A DWebAgentConfigReport.java90 String authURL = getBaseUrlStr(
98 RESTResponse response = callServiceURL(authURL, data1);
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DCreateProfileTask.java138 String authURL = serverURL + AUTHENTICATION_URI;
139 ssoToken = getSSOToken(authURL, agentAdminName, agentAdminPassword);
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/iplanet/services/cdc/
H A DCDCServlet.java559 String authURL = null;
563 authURL = CookieUtils.getCookieValue(authCookie);
566 "got an authenticated URL: " + authURL);
571 if ((authURL == null) || (authURL.length() == 0) ||
573 !authURL.toLowerCase().startsWith("http")
646 // Redirect the user to the OpenAM host that they originally authenticated against. The authURL is
654 if (StringUtils.compareCaseInsensitiveString(serverUrl, authURL)) {
665 redirectURL.append(authURL).append(deployDescriptor)
/forgerock/openam/openam-federation/OpenFM/src/main/java/com/iplanet/services/cdc/
H A DCDCServlet.java560 String authURL = null;
564 authURL = CookieUtils.getCookieValue(authCookie);
567 "got an authenticated URL: " + authURL);
572 if ((authURL == null) || (authURL.length() == 0) ||
574 !authURL.toLowerCase().startsWith("http")
647 // Redirect the user to the OpenAM host that they originally authenticated against. The authURL is
655 if (StringUtils.compareCaseInsensitiveString(serverUrl, authURL)) {
666 redirectURL.append(authURL).append(deployDescriptor)
/forgerock/openam/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DCreateProfileTask.java195 private String getSSOToken(String serviceURL, String authURL, String userName, String password) throws Exception { argument
199 .path(authURL)
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/util/
H A DFSServiceUtils.java585 StringBuffer authURL = new StringBuffer();
586 authURL.append(FSServiceUtils.getBaseURL(request))
588 if ((authURL.toString()).indexOf(IFSConstants.QUESTION_MARK) < 0) {
593 authURL.append(authDelimiter)
600 authURL.append(IFSConstants.AMPERSAND).append(parameterString);
604 authURL.toString());
606 response.sendRedirect(authURL.toString());
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/util/
H A DFSServiceUtils.java585 StringBuffer authURL = new StringBuffer();
586 authURL.append(FSServiceUtils.getBaseURL(request))
588 if ((authURL.toString()).indexOf(IFSConstants.QUESTION_MARK) < 0) {
593 authURL.append(authDelimiter)
600 authURL.append(IFSConstants.AMPERSAND).append(parameterString);
604 authURL.toString());
606 response.sendRedirect(authURL.toString());
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMResourceOwnerSessionValidator.java367 final String authURL = getAuthURL(getHttpServletRequest(req));
368 final URI authURI = new URI(authURL);
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/
H A DResourceOwnerSessionValidator.java389 final String authURL = getAuthURL(getHttpServletRequest(req));
390 final URI authURI = new URI(authURL);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/server/
H A DAuthXMLResponse.java69 String authURL; field in class:AuthXMLResponse
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/server/
H A DAuthXMLResponse.java69 String authURL; field in class:AuthXMLResponse
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/client/
H A DAuthClientUtils.java2510 URL authURL = null;
2515 authURL = new URL(cookieURL + "?" + queryString);
2517 authURL = new URL(cookieURL);
2521 utilDebug.message("Connecting to : " + authURL);
2524 conn = HttpURLConnectionManager.getConnection(authURL);
2635 if (isSameServer(authURL, gotoURL)) {
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/client/
H A DAuthClientUtils.java2513 URL authURL = null;
2518 authURL = new URL(cookieURL + "?" + queryString);
2520 authURL = new URL(cookieURL);
2524 utilDebug.message("Connecting to : " + authURL);
2527 conn = HttpURLConnectionManager.getConnection(authURL);
2642 if (isSameServer(authURL, gotoURL)) {

Completed in 76 milliseconds