Searched defs:currentState (Results 1 - 25 of 29) sorted by relevance

12

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/
H A DDebugPropertiesObserver.java45 private static String currentState; field in class:DebugPropertiesObserver
50 currentState = SystemProperties.get(Constants.SERVICES_DEBUG_LEVEL);
75 if (!currentState.equals(state)) {
81 currentState = state;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/
H A DDebugPropertiesObserver.java45 private static String currentState; field in class:DebugPropertiesObserver
50 currentState = SystemProperties.get(Constants.SERVICES_DEBUG_LEVEL);
75 if (!currentState.equals(state)) {
81 currentState = state;
/forgerock/openam-v13/openam-authentication/openam-auth-datastore/src/main/java/com/sun/identity/authentication/modules/datastore/
H A DDataStore.java59 private int currentState; field in class:DataStore
101 currentState = state;
106 if (currentState == ISAuthConstants.LOGIN_START) {
/forgerock/openam/openam-authentication/openam-auth-datastore/src/main/java/com/sun/identity/authentication/modules/datastore/
H A DDataStore.java59 private int currentState; field in class:DataStore
101 currentState = state;
106 if (currentState == ISAuthConstants.LOGIN_START) {
/forgerock/openam-v13/openam-authentication/openam-auth-hotp/src/main/java/com/sun/identity/authentication/modules/hotp/
H A DHOTP.java65 private int currentState; field in class:HOTP
198 currentState = state;
201 if (currentState == START_STATE) {
/forgerock/openam/openam-authentication/openam-auth-hotp/src/main/java/com/sun/identity/authentication/modules/hotp/
H A DHOTP.java65 private int currentState; field in class:HOTP
198 currentState = state;
201 if (currentState == START_STATE) {
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/server/
H A DECLServerHandler.java157 ServerState currentState; field in class:ECLServerHandler.DomainContext
183 .append(stopState).append("] [currentState=").append(currentState)
831 newDomainCtxt.currentState = new ServerState();
1454 domainCtxts[iDom].currentState.update(
1457 if (domainCtxts[iDom].currentState.cover(domainCtxts[iDom].stopState))
1499 domainCtxts[iDom].currentState.update(
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/server/
H A DECLServerHandler.java157 ServerState currentState; field in class:ECLServerHandler.DomainContext
183 .append(stopState).append("] [currentState=").append(currentState)
831 newDomainCtxt.currentState = new ServerState();
1454 domainCtxts[iDom].currentState.update(
1457 if (domainCtxts[iDom].currentState.cover(domainCtxts[iDom].stopState))
1499 domainCtxts[iDom].currentState.update(
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/server/
H A DECLServerHandler.java157 ServerState currentState; field in class:ECLServerHandler.DomainContext
183 .append(stopState).append("] [currentState=").append(currentState)
831 newDomainCtxt.currentState = new ServerState();
1454 domainCtxts[iDom].currentState.update(
1457 if (domainCtxts[iDom].currentState.cover(domainCtxts[iDom].stopState))
1499 domainCtxts[iDom].currentState.update(
/forgerock/openam-v13/openam-authentication/openam-auth-ldap/src/main/java/com/sun/identity/authentication/modules/ldap/
H A DLDAP.java85 private int currentState; field in class:LDAP
297 currentState = state;
357 currentState = LoginScreen.PASSWORD_CHANGE.intValue();
366 return currentState;
369 debug.message("you are in Password Screen:" + currentState);
430 currentState = LoginScreen.PASSWORD_CHANGE.intValue();
433 return currentState;
473 currentState = LoginScreen.USER_INACTIVE.intValue();
474 return currentState;
547 currentState
[all...]
/forgerock/openidm-v4/openidm-cluster/src/main/java/org/forgerock/openidm/cluster/
H A DClusterManager.java170 private InstanceState currentState = null; field in class:ClusterManager
784 currentState = null;
794 if (currentState == null || currentState.getState() != InstanceState.STATE_RUNNING) {
801 currentState = state;
/forgerock/openam/openam-authentication/openam-auth-ldap/src/main/java/com/sun/identity/authentication/modules/ldap/
H A DLDAP.java88 private int currentState; field in class:LDAP
303 currentState = state;
363 currentState = LoginScreen.PASSWORD_CHANGE.intValue();
372 return currentState;
375 debug.message("you are in Password Screen:" + currentState);
436 currentState = LoginScreen.PASSWORD_CHANGE.intValue();
439 return currentState;
479 currentState = LoginScreen.USER_INACTIVE.intValue();
480 return currentState;
553 currentState
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DAMLoginModule.java241 private int currentState = ISAuthConstants.LOGIN_START; field in class:AMLoginModule
1067 currentState = ISAuthConstants.LOGIN_IGNORE;
1079 return (currentState == ISAuthConstants.LOGIN_SUCCEED) ||
1080 (currentState == ISAuthConstants.LOGIN_IGNORE);
1099 if (currentState == ISAuthConstants.LOGIN_SUCCEED) {
1107 + currentState);
1119 currentState = wrapProcess(EMPTY_CALLBACK, 1);
1121 if (currentState == ISAuthConstants.LOGIN_SUCCEED) {
1126 } else if (currentState == ISAuthConstants.LOGIN_IGNORE) {
1138 new Object[]{new Integer(currentState)});
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DAMLoginModule.java247 private int currentState = ISAuthConstants.LOGIN_START; field in class:AMLoginModule
1079 currentState = ISAuthConstants.LOGIN_IGNORE;
1091 return (currentState == ISAuthConstants.LOGIN_SUCCEED) ||
1092 (currentState == ISAuthConstants.LOGIN_IGNORE);
1111 return ISAuthConstants.LOGIN_SUCCEED == currentState;
1114 debug.message("This module is not done yet. CurrentState: {}", currentState);
1126 currentState = wrapProcess(EMPTY_CALLBACK, 1);
1128 switch (currentState) {
1144 throw new AuthLoginException(bundleName, "invalidCode", new Object[]{new Integer(currentState)});
1157 //currentState
[all...]
/forgerock/authenticator-android-v2/app/libs/
H A Dcore-2.3.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/forgerock/opendj2/ext/ant/lib/
H A Djdeb-0.10.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/plugin. ...
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/forgerock/opendj-b2.6/ext/ant/lib/
H A Djdeb-0.10.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/plugin. ...
/forgerock/opendj2.6.2/ext/ant/lib/
H A Djdeb-0.10.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/plugin. ...
/forgerock/opendj2-hg/ext/ant/lib/
H A Djdeb-0.10.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/plugin. ...
/forgerock/opendj-v3/opendj-server-legacy/ext/ant/lib/
H A Djdeb-0.10.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/plugin. ...
/forgerock/opendj-b2.6/resource/dsml/lib/
H A Djaxb1-impl.jarMETA-INF/ META-INF/MANIFEST.MF COPYING.txt META-INF/services/ META-INF/ ...
/forgerock/opendj2-jel-hg/resource/dsml/lib/
H A Djaxb1-impl.jarMETA-INF/ META-INF/MANIFEST.MF COPYING.txt META-INF/services/ META-INF/ ...
/forgerock/openam-v13/openam-oauth/samples/StockClient/lib/
H A Djavaee.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/servlet/ javax/servlet/jsp/ javax/servlet/jsp/jstl/ ...
/forgerock/openam-v13/openam-oauth/samples/StockService/lib/
H A Djavaee.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/servlet/ javax/servlet/jsp/ javax/servlet/jsp/jstl/ ...

Completed in 72 milliseconds

12