/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/ |
H A D | LoginConfiguration.java | 35 private boolean forceAuth = false; field in class:LoginConfiguration 175 public LoginConfiguration forceAuth(String forceAuthReqParam) { method in class:LoginConfiguration 176 forceAuth = Boolean.parseBoolean(forceAuthReqParam); 185 return forceAuth;
|
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/ |
H A D | LoginConfiguration.java | 35 private boolean forceAuth = false; field in class:LoginConfiguration 175 public LoginConfiguration forceAuth(String forceAuthReqParam) { method in class:LoginConfiguration 176 forceAuth = Boolean.parseBoolean(forceAuthReqParam); 185 return forceAuth;
|
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/authentication/service/ |
H A D | SessionPropertyUpgrader.java | 53 * @param forceAuth Whether the authentication was forced 55 public final void populateProperties(InternalSession oldSession, InternalSession newSession, boolean forceAuth) { argument 61 if (!forceAuth) {
|
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/authentication/service/ |
H A D | SessionPropertyUpgrader.java | 53 * @param forceAuth Whether the authentication was forced 55 public final void populateProperties(InternalSession oldSession, InternalSession newSession, boolean forceAuth) { argument 61 if (!forceAuth) {
|
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/server/ |
H A D | AuthXMLRequest.java | 106 private String forceAuth=null; field in class:AuthXMLRequest 211 this.forceAuth = aForceAuth; 380 return forceAuth;
|
H A D | AuthXMLRequestParser.java | 218 String forceAuth = 219 parseNodeAttributes(loginNode,"forceAuth"); 220 if (forceAuth != null) { 221 authXMLRequest.setForceAuth(forceAuth); 224 + "Got the force auth flag: "+forceAuth); 227 boolean forceAuthBool = Boolean.parseBoolean(forceAuth);
|
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/server/ |
H A D | AuthXMLRequest.java | 106 private String forceAuth=null; field in class:AuthXMLRequest 211 this.forceAuth = aForceAuth; 380 return forceAuth;
|
H A D | AuthXMLRequestParser.java | 218 String forceAuth = 219 parseNodeAttributes(loginNode,"forceAuth"); 220 if (forceAuth != null) { 221 authXMLRequest.setForceAuth(forceAuth); 224 + "Got the force auth flag: "+forceAuth); 227 boolean forceAuthBool = Boolean.parseBoolean(forceAuth);
|
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/ |
H A D | AuthContext.java | 152 private boolean forceAuth = false; field in class:AuthContext 351 * If forceAuth flag is <code>true</code> then the existing session 353 * behaves same as the constructor with no forceAuth flag. 364 * @param forceAuth indicates that authentication preocess has to be 372 public AuthContext(SSOToken ssoToken, boolean forceAuth) throws argument 375 this.forceAuth = forceAuth; 721 + "ForceAuth = "+forceAuth); 725 null, null, null, forceAuth); 854 if (forceAuth) { [all...] |
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/ |
H A D | AuthContext.java | 152 private boolean forceAuth = false; field in class:AuthContext 351 * If forceAuth flag is <code>true</code> then the existing session 353 * behaves same as the constructor with no forceAuth flag. 364 * @param forceAuth indicates that authentication preocess has to be 372 public AuthContext(SSOToken ssoToken, boolean forceAuth) throws argument 375 this.forceAuth = forceAuth; 721 + "ForceAuth = "+forceAuth); 725 null, null, null, forceAuth); 854 if (forceAuth) { [all...] |
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/ |
H A D | AuthUtils.java | 966 * @param forceAuth force auth flag 971 String indexType, AuthXMLRequest xmlReq, boolean forceAuth) 1019 if (forceAuth) { 1042 + forceAuth); 1105 if (forceAuth){ 1106 loginState.setForceAuth(forceAuth); 969 getAuthContext(String orgName, String sessionID, boolean isLogout, HttpServletRequest req, String indexType, AuthXMLRequest xmlReq, boolean forceAuth) argument
|
H A D | LoginState.java | 338 private boolean forceAuth; field in class:LoginState 1145 if (sessionUpgrade && !forceAuth && isSessionActivated && oldStatelessSession == null) { 1173 if (forceAuth) { 1300 if (forceAuth && sessionUpgrade) { 1651 return forceAuth; 1655 forceAuth = force; 4765 if (!forceAuth) { 4835 LazyConfig.SESSION_PROPERTY_UPGRADER.populateProperties(oldSession, session, forceAuth);
|
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/service/ |
H A D | AuthUtils.java | 896 * @param forceAuth force auth flag 905 final boolean forceAuth) throws AuthException { 952 if (forceAuth) { 975 + forceAuth); 1038 if (forceAuth){ 1039 loginState.setForceAuth(forceAuth); 899 getAuthContext(final String providedOrgName, final String sessionID, final boolean isLogout, final HttpServletRequest req, final String indexType, final AuthXMLRequest xmlReq, final boolean forceAuth) argument
|
H A D | LoginState.java | 345 private boolean forceAuth; field in class:LoginState 1103 if (sessionUpgrade && !forceAuth && isSessionActivated && oldStatelessSession == null) { 1131 if (forceAuth) { 1259 if (forceAuth && sessionUpgrade) { 1609 return forceAuth; 1613 forceAuth = force; 4669 if (!forceAuth) { 4744 LazyConfig.SESSION_PROPERTY_UPGRADER.populateProperties(oldSession, session, forceAuth);
|
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/ |
H A D | RestAuthenticationHandler.java | 162 .forceAuth(request.getParameter(AuthUtils.FORCE_AUTH))
|
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/ |
H A D | RestAuthenticationHandler.java | 168 .forceAuth(request.getParameter(AuthUtils.FORCE_AUTH))
|
/forgerock/openam-v13/openam-server-auth-ui/src/main/java/com/sun/identity/authentication/UI/ |
H A D | LoginViewBean.java | 322 forceAuth = AuthUtils.forceAuthFlagExists(reqDataHash); 336 if (forceAuth) { 454 ac.getLoginState().setForceAuth(forceAuth); 2217 private boolean forceAuth; field in class:LoginViewBean
|
/forgerock/openam/openam-server-auth-ui/src/main/java/com/sun/identity/authentication/UI/ |
H A D | LoginViewBean.java | 326 forceAuth = AuthUtils.forceAuthFlagExists(reqDataHash); 340 if (forceAuth) { 458 ac.getLoginState().setForceAuth(forceAuth); 2239 private boolean forceAuth; field in class:LoginViewBean
|