Searched refs:currentState (Results 1 - 25 of 39) sorted by relevance

12

/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/history/
H A Dhistory-beta-debug.js153 currentStates.push( moduleName + "=" + moduleObj.currentState );
165 * Sets the new currentState attribute of all modules depending on the new
182 var currentState;
189 moduleObj.currentState = moduleObj.initialState;
190 moduleObj.onStateChange( unescape( moduleObj.currentState ) );
202 currentState = tokens[1];
203 modules[moduleName] = currentState;
210 currentState = modules[moduleName];
211 if ( !currentState || moduleObj.currentState !
[all...]
H A Dhistory-beta-min.js10 function _storeStates(){var moduleName;var moduleObj;var initialStates=[];var currentStates=[];for(moduleName in _modules){if(YAHOO.lang.hasOwnProperty(_modules,moduleName)){moduleObj=_modules[moduleName];initialStates.push(moduleName+"="+moduleObj.initialState);currentStates.push(moduleName+"="+moduleObj.currentState);}}
12 function _handleFQStateChange(fqstate){var i;var len;var moduleName;var moduleObj;var modules;var states;var tokens;var currentState;if(!fqstate){for(moduleName in _modules){if(YAHOO.lang.hasOwnProperty(_modules,moduleName)){moduleObj=_modules[moduleName];moduleObj.currentState=moduleObj.initialState;moduleObj.onStateChange(unescape(moduleObj.currentState));}}
14 modules=[];states=fqstate.split("&");for(i=0,len=states.length;i<len;i++){tokens=states[i].split("=");if(tokens.length===2){moduleName=tokens[0];currentState=tokens[1];modules[moduleName]=currentState;}}
15 for(moduleName in _modules){if(YAHOO.lang.hasOwnProperty(_modules,moduleName)){moduleObj=_modules[moduleName];currentState=modules[moduleName];if(!currentState||moduleObj.currentState!==currentState){moduleOb
[all...]
H A Dhistory-beta.js153 currentStates.push( moduleName + "=" + moduleObj.currentState );
165 * Sets the new currentState attribute of all modules depending on the new
182 var currentState;
189 moduleObj.currentState = moduleObj.initialState;
190 moduleObj.onStateChange( unescape( moduleObj.currentState ) );
202 currentState = tokens[1];
203 modules[moduleName] = currentState;
210 currentState = modules[moduleName];
211 if ( !currentState || moduleObj.currentState !
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/history/
H A Dhistory-beta-debug.js153 currentStates.push( moduleName + "=" + moduleObj.currentState );
165 * Sets the new currentState attribute of all modules depending on the new
182 var currentState;
189 moduleObj.currentState = moduleObj.initialState;
190 moduleObj.onStateChange( unescape( moduleObj.currentState ) );
202 currentState = tokens[1];
203 modules[moduleName] = currentState;
210 currentState = modules[moduleName];
211 if ( !currentState || moduleObj.currentState !
[all...]
H A Dhistory-beta-min.js10 function _storeStates(){var moduleName;var moduleObj;var initialStates=[];var currentStates=[];for(moduleName in _modules){if(YAHOO.lang.hasOwnProperty(_modules,moduleName)){moduleObj=_modules[moduleName];initialStates.push(moduleName+"="+moduleObj.initialState);currentStates.push(moduleName+"="+moduleObj.currentState);}}
12 function _handleFQStateChange(fqstate){var i;var len;var moduleName;var moduleObj;var modules;var states;var tokens;var currentState;if(!fqstate){for(moduleName in _modules){if(YAHOO.lang.hasOwnProperty(_modules,moduleName)){moduleObj=_modules[moduleName];moduleObj.currentState=moduleObj.initialState;moduleObj.onStateChange(unescape(moduleObj.currentState));}}
14 modules=[];states=fqstate.split("&");for(i=0,len=states.length;i<len;i++){tokens=states[i].split("=");if(tokens.length===2){moduleName=tokens[0];currentState=tokens[1];modules[moduleName]=currentState;}}
15 for(moduleName in _modules){if(YAHOO.lang.hasOwnProperty(_modules,moduleName)){moduleObj=_modules[moduleName];currentState=modules[moduleName];if(!currentState||moduleObj.currentState!==currentState){moduleOb
[all...]
H A Dhistory-beta.js153 currentStates.push( moduleName + "=" + moduleObj.currentState );
165 * Sets the new currentState attribute of all modules depending on the new
182 var currentState;
189 moduleObj.currentState = moduleObj.initialState;
190 moduleObj.onStateChange( unescape( moduleObj.currentState ) );
202 currentState = tokens[1];
203 modules[moduleName] = currentState;
210 currentState = modules[moduleName];
211 if ( !currentState || moduleObj.currentState !
[all...]
/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-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/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/opendj2/src/server/org/opends/server/api/
H A DDirectoryThread.java447 ThreadState currentState = this.threadState.get();
448 while (!currentState.isShutdownInitiated())
450 if (this.threadState.compareAndSet(currentState, newState))
454 currentState = this.threadState.get();
/forgerock/opendj2.6.2/src/server/org/opends/server/api/
H A DDirectoryThread.java448 ThreadState currentState = this.threadState.get();
449 while (!currentState.isShutdownInitiated())
451 if (this.threadState.compareAndSet(currentState, newState))
455 currentState = this.threadState.get();
/forgerock/opendj2-hg/src/server/org/opends/server/api/
H A DDirectoryThread.java447 ThreadState currentState = this.threadState.get();
448 while (!currentState.isShutdownInitiated())
450 if (this.threadState.compareAndSet(currentState, newState))
454 currentState = this.threadState.get();
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/api/
H A DDirectoryThread.java423 ThreadState currentState = this.threadState.get();
424 while (!currentState.isShutdownInitiated())
426 if (this.threadState.compareAndSet(currentState, newState))
430 currentState = this.threadState.get();
/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/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/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/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/ ...

Completed in 85 milliseconds

12