Searched refs:isSessionUpgrade (Results 1 - 25 of 30) sorted by relevance

12

/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/wrappers/
H A DCoreServicesWrapper.java50 * @param isSessionUpgrade Whether the AuthContextLocal should be created for session upgrade.
57 SessionID sessionID, boolean isSessionUpgrade, boolean isBackPost) throws AuthException {
58 AuthContextLocal authContextLocal = AuthUtils.getAuthContext(request, response, sessionID, isSessionUpgrade,
56 getAuthContext(HttpServletRequest request, HttpServletResponse response, SessionID sessionID, boolean isSessionUpgrade, boolean isBackPost) argument
H A DAuthContextLocalWrapper.java219 public boolean isSessionUpgrade() { method in class:AuthContextLocalWrapper
220 return authContextLocal.getLoginState().isSessionUpgrade();
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/wrappers/
H A DCoreServicesWrapper.java50 * @param isSessionUpgrade Whether the AuthContextLocal should be created for session upgrade.
57 SessionID sessionID, boolean isSessionUpgrade, boolean isBackPost) throws AuthException {
58 AuthContextLocal authContextLocal = AuthUtils.getAuthContext(request, response, sessionID, isSessionUpgrade,
56 getAuthContext(HttpServletRequest request, HttpServletResponse response, SessionID sessionID, boolean isSessionUpgrade, boolean isBackPost) argument
H A DAuthContextLocalWrapper.java220 public boolean isSessionUpgrade() { method in class:AuthContextLocalWrapper
221 return authContextLocal.getLoginState().isSessionUpgrade();
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/
H A DAuthenticationContext.java184 boolean isSessionUpgrade(); method in interface:AuthenticationContext
H A DLoginAuthenticator.java189 boolean isSessionUpgrade = false;
193 isSessionUpgrade = checkSessionUpgrade(ssoToken, loginConfiguration.getIndexType(),
197 return coreServicesWrapper.getAuthContext(request, response, sessionID, isSessionUpgrade, isBackPost);
H A DLoginProcess.java253 if (authContext.isSessionUpgrade()) {
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/
H A DAuthenticationContext.java184 boolean isSessionUpgrade(); method in interface:AuthenticationContext
H A DLoginAuthenticator.java185 boolean isSessionUpgrade = false;
193 isSessionUpgrade = checkSessionUpgrade(ssoToken, loginConfiguration.getIndexType(),
197 return coreServicesWrapper.getAuthContext(request, response, sessionID, isSessionUpgrade, isBackPost);
H A DLoginProcess.java255 if (authContext.isSessionUpgrade()) {
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/org/forgerock/openam/saml2/
H A DUtilProxySAMLAuthenticatorLookup.java142 boolean isSessionUpgrade = false;
145 isSessionUpgrade = IDPCache.isSessionUpgradeCache.contains(data.getRequestID());
148 if (isSessionUpgrade) {
H A DUtilProxySAMLAuthenticator.java297 sessionUpgrade = isSessionUpgrade(idpAuthnContextInfo, data.getSession());
429 private static boolean isSessionUpgrade(IDPAuthnContextInfo idpAuthnContextInfo, Object session) { method in class:UtilProxySAMLAuthenticator
431 String classMethod = "IDPSSOFederate.isSessionUpgrade: ";
685 boolean isSessionUpgrade)
748 if (isSessionUpgrade) {
755 if (isSessionUpgrade) {
683 redirectAuthentication(HttpServletRequest request, HttpServletResponse response, IDPAuthnContextInfo info, IDPSSOFederateRequest data, boolean isSessionUpgrade) argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/org/forgerock/openam/saml2/
H A DUtilProxySAMLAuthenticatorLookup.java142 boolean isSessionUpgrade = false;
145 isSessionUpgrade = IDPCache.isSessionUpgradeCache.contains(data.getRequestID());
148 if (isSessionUpgrade) {
H A DUtilProxySAMLAuthenticator.java306 sessionUpgrade = isSessionUpgrade(idpAuthnContextInfo, data.getSession());
439 private static boolean isSessionUpgrade(IDPAuthnContextInfo idpAuthnContextInfo, Object session) { method in class:UtilProxySAMLAuthenticator
441 String classMethod = "UtilProxySAMLAuthenticator.isSessionUpgrade: ";
697 boolean isSessionUpgrade)
760 if (isSessionUpgrade) {
767 if (isSessionUpgrade) {
695 redirectAuthentication(HttpServletRequest request, HttpServletResponse response, IDPAuthnContextInfo info, IDPSSOFederateRequest data, boolean isSessionUpgrade) argument
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DStatelessSessionActivator.java61 if (loginState.isSessionUpgrade()) {
H A DAuthUtils.java170 * @param isSessionUpgrade <code>true</code> if session upgrade.
178 boolean isSessionUpgrade,
181 isSessionUpgrade,isBackPost,false);
190 * @param isSessionUpgrade <code>true</code> if session upgrade.
199 boolean isSessionUpgrade,
220 if(!sid.isNull() && authContext == null && !isSessionUpgrade) {
254 utilDebug.message("isSessionUpgrade :" + isSessionUpgrade);
263 if ((authContext == null) || (isSessionUpgrade) || (isBackPost)) {
271 if (isSessionUpgrade) {
174 getAuthContext( HttpServletRequest request, HttpServletResponse response, SessionID sid, boolean isSessionUpgrade, boolean isBackPost) argument
195 getAuthContext( HttpServletRequest request, HttpServletResponse response, SessionID sid, boolean isSessionUpgrade, boolean isBackPost, boolean isLogout) argument
1226 public static boolean isSessionUpgrade(AuthContextLocal authContext) { method in class:AuthUtils
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DStatelessSessionActivator.java61 if (loginState.isSessionUpgrade()) {
H A DAuthUtils.java163 * @param isSessionUpgrade <code>true</code> if session upgrade.
170 final boolean isSessionUpgrade,
172 return getAuthContext(request, response, sid, isSessionUpgrade, isBackPost, false, false);
181 * @param isSessionUpgrade <code>true</code> if session upgrade.
190 final boolean isSessionUpgrade,
210 if(!sessionId.isNull() && authContext == null && !isSessionUpgrade) {
240 utilDebug.message("isSessionUpgrade :" + isSessionUpgrade);
249 if ((authContext == null) || (isSessionUpgrade) || (isBackPost)) {
257 if (isSessionUpgrade) {
167 getAuthContext(final HttpServletRequest request, final HttpServletResponse response, final SessionID sid, final boolean isSessionUpgrade, final boolean isBackPost) argument
187 getAuthContext(final HttpServletRequest request, final HttpServletResponse response, final SessionID sessionId, final boolean isSessionUpgrade, final boolean isBackPost, final boolean isLogout, final boolean isRestAuth) argument
1096 public static boolean isSessionUpgrade(AuthContextLocal authContext) { method in class:AuthUtils
[all...]
/forgerock/openam-v13/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/core/
H A DLoginProcessTest.java407 given(authContext.isSessionUpgrade()).willReturn(true);
420 given(authContext.isSessionUpgrade()).willReturn(false);
461 given(authContext.isSessionUpgrade()).willReturn(true);
H A DLoginAuthenticatorTest.java447 given(authContextLocalWrapper.isSessionUpgrade()).willReturn(true);
485 given(authContextLocalWrapper.isSessionUpgrade()).willReturn(true);
523 given(authContextLocalWrapper.isSessionUpgrade()).willReturn(true);
561 given(authContextLocalWrapper.isSessionUpgrade()).willReturn(true);
599 given(authContextLocalWrapper.isSessionUpgrade()).willReturn(true);
633 given(authContextLocalWrapper.isSessionUpgrade()).willReturn(true);
671 given(authContextLocalWrapper.isSessionUpgrade()).willReturn(true);
/forgerock/openam/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/core/
H A DLoginProcessTest.java407 given(authContext.isSessionUpgrade()).willReturn(true);
420 given(authContext.isSessionUpgrade()).willReturn(false);
461 given(authContext.isSessionUpgrade()).willReturn(true);
H A DLoginAuthenticatorTest.java442 given(authContextLocalWrapper.isSessionUpgrade()).willReturn(true);
480 given(authContextLocalWrapper.isSessionUpgrade()).willReturn(true);
518 given(authContextLocalWrapper.isSessionUpgrade()).willReturn(true);
556 given(authContextLocalWrapper.isSessionUpgrade()).willReturn(true);
594 given(authContextLocalWrapper.isSessionUpgrade()).willReturn(true);
628 given(authContextLocalWrapper.isSessionUpgrade()).willReturn(true);
666 given(authContextLocalWrapper.isSessionUpgrade()).willReturn(true);
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DInternalSession.java136 private boolean isSessionUpgrade = false; field in class:InternalSession
672 * Sets the status of the isSessionUpgrade flag to which determines if the
679 isSessionUpgrade = value;
690 return isSessionUpgrade;
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DInternalSession.java137 private transient boolean isSessionUpgrade = false; field in class:InternalSession
1043 * Sets the status of the isSessionUpgrade falg to which determines if the
1051 isSessionUpgrade = value;
1062 return isSessionUpgrade;
/forgerock/openam-v13/openam-server-auth-ui/src/main/java/com/sun/identity/authentication/UI/
H A DLoginViewBean.java540 if (AuthUtils.isSessionUpgrade(ac)) {
708 if (AuthUtils.isSessionUpgrade(ac)) {
915 if (AuthUtils.isSessionUpgrade(ac)) {

Completed in 1663 milliseconds

12