Searched refs:sharedState (Results 1 - 25 of 95) sorted by relevance

1234

/forgerock/openam/openam-authentication/openam-auth-common/src/main/java/org/forgerock/openam/authentication/modules/common/
H A DAbstractLoginModuleBinder.java38 private Map sharedState; field in class:AbstractLoginModuleBinder
54 * the relevant information. If this AuthLoginModule does not understand any of the data stored in sharedState or
58 * @param sharedState The state shared with other configured LoginModules.
65 public void init(Subject subject, Map sharedState, Map options) { argument
66 this.sharedState = sharedState;
67 authLoginModule.init(subject, sharedState, options);
99 if (sharedState != null) {
100 return (String) sharedState.get(getUserKey());
H A DJaspiAuthLoginModule.java60 * @param sharedState {@inheritDoc}
64 public void init(Subject subject, Map sharedState, Map options) { argument
67 Map<String, Object> config = generateConfig(subject, sharedState, options);
79 * @param sharedState The state shared with other configured LoginModules.
83 protected abstract Map<String, Object> generateConfig(Subject subject, Map sharedState, Map options); argument
/forgerock/openam-v13/openam-authentication/openam-auth-common/src/main/java/org/forgerock/openam/authentication/modules/common/
H A DAbstractLoginModuleBinder.java54 * the relevant information. If this AuthLoginModule does not understand any of the data stored in sharedState or
58 * @param sharedState The state shared with other configured LoginModules.
65 public void init(Subject subject, Map sharedState, Map options) { argument
66 authLoginModule.init(subject, sharedState, options);
H A DAuthLoginModule.java57 * the relevant information. If this AuthLoginModule does not understand any of the data stored in sharedState or
61 * @param sharedState The state shared with other configured LoginModules.
67 public abstract void init(Subject subject, Map sharedState, Map options); argument
/forgerock/openam-v13/openam-authentication/openam-auth-device-id/src/main/java/org/forgerock/openam/authentication/modules/deviceprint/
H A DDeviceIdMatch.java35 Object deviceId = sharedState.get(CLIENT_SCRIPT_OUTPUT_DATA_VARIABLE_NAME);
H A DDeviceIdSave.java67 public void init(Subject subject, Map sharedState, Map config) { argument
69 userName = (String) sharedState.get(getUserKey());
72 MAPPER.readValue((String) sharedState.get(DEVICE_PRINT_PROFILE_KEY), Map.class);
/forgerock/openam/openam-authentication/openam-auth-device-id/src/main/java/org/forgerock/openam/authentication/modules/deviceprint/
H A DDeviceIdMatch.java35 Object deviceId = sharedState.get(CLIENT_SCRIPT_OUTPUT_DATA_VARIABLE_NAME);
H A DDeviceIdSave.java67 public void init(Subject subject, Map sharedState, Map config) { argument
69 userName = (String) sharedState.get(getUserKey());
72 MAPPER.readValue((String) sharedState.get(DEVICE_PRINT_PROFILE_KEY), Map.class);
/forgerock/jee-agents-v3.5/jee-agents-weblogic/jee-agents-weblogic-v10/src/main/java/com/sun/identity/agents/weblogic/v10/
H A DAmWLLoginModule.java69 * @param sharedState
75 Map sharedState, Map options) {
78 setSharedState(sharedState);
330 private void setSharedState(Map sharedState) { argument
331 this.sharedState = sharedState;
335 return this.sharedState;
373 private Map sharedState; field in class:AmWLLoginModule
74 initialize(Subject subject, CallbackHandler callbackHandler, Map sharedState, Map options) argument
/forgerock/openam-v13/openam-authentication/openam-auth-datastore/src/main/java/com/sun/identity/authentication/modules/datastore/
H A DDataStore.java66 private Map sharedState; field in class:DataStore
78 public void init(Subject subject, Map sharedState, Map options) { argument
96 this.sharedState = sharedState;
108 userName = (String) sharedState.get(getUserKey());
109 userPassword = (String) sharedState.get(getPwdKey());
196 sharedState = null;
/forgerock/openam/openam-authentication/openam-auth-datastore/src/main/java/com/sun/identity/authentication/modules/datastore/
H A DDataStore.java66 private Map sharedState; field in class:DataStore
78 public void init(Subject subject, Map sharedState, Map options) { argument
96 this.sharedState = sharedState;
108 userName = (String) sharedState.get(getUserKey());
109 userPassword = (String) sharedState.get(getPwdKey());
196 sharedState = null;
/forgerock/openam/openam-samples/custom-authentication-module/src/main/java/org/forgerock/openam/examples/
H A DSampleAuth.java81 private Map<String, String> sharedState; field in class:SampleAuth
92 * @param sharedState
96 public void init(Subject subject, Map sharedState, Map options) { argument
101 this.sharedState = sharedState;
/forgerock/openam/openam-authentication/openam-auth-amster/src/main/java/org/forgerock/openam/authentication/modules/amster/
H A DAmsterAuthLoginModule.java53 public void init(Subject subject, Map sharedState, Map options) { argument
/forgerock/openam-v13/openam-authentication/openam-auth-hotp/src/main/java/com/sun/identity/authentication/modules/hotp/
H A DHOTP.java66 private Map sharedState; field in class:HOTP
99 public void init(Subject subject, Map sharedState, Map options) { argument
140 userName = (String) sharedState.get(getUserKey());
161 this.sharedState = sharedState;
163 if (sharedState.containsKey(SKIP_HOTP)) {
164 skip = (Boolean) sharedState.get(SKIP_HOTP);
278 sharedState = null;
/forgerock/openam/openam-authentication/openam-auth-hotp/src/main/java/com/sun/identity/authentication/modules/hotp/
H A DHOTP.java66 private Map sharedState; field in class:HOTP
99 public void init(Subject subject, Map sharedState, Map options) { argument
140 userName = (String) sharedState.get(getUserKey());
161 this.sharedState = sharedState;
163 if (sharedState.containsKey(SKIP_HOTP)) {
164 skip = (Boolean) sharedState.get(SKIP_HOTP);
278 sharedState = null;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/internal/
H A DLoginContext.java53 private HashMap sharedState = new HashMap(); field in class:LoginContext
124 module.initialize(subject, cbHandler, sharedState, map);
151 sharedState.put(ISAuthConstants.SHARED_STATE_USERNAME,
157 sharedState.put(ISAuthConstants.SHARED_STATE_PASSWORD,
167 sharedState.put(ISAuthConstants.SHARED_STATE_USERNAME, username);
168 sharedState.put(ISAuthConstants.SHARED_STATE_PASSWORD, new String(
/forgerock/openam-v13/openam-authentication/openam-auth-anonymous/src/main/java/com/sun/identity/authentication/modules/anonymous/
H A DAnonymous.java62 private Map sharedState; field in class:Anonymous
84 public void init(Subject subject, Map sharedState, Map options) { argument
89 this.sharedState = sharedState;
146 usernameParam = (String) sharedState.get(getUserKey());
228 sharedState = null;
/forgerock/openam/openam-authentication/openam-auth-anonymous/src/main/java/com/sun/identity/authentication/modules/anonymous/
H A DAnonymous.java62 private Map sharedState; field in class:Anonymous
84 public void init(Subject subject, Map sharedState, Map options) { argument
89 this.sharedState = sharedState;
146 usernameParam = (String) sharedState.get(getUserKey());
228 sharedState = null;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/internal/
H A DLoginContext.java53 private HashMap sharedState = new HashMap(); field in class:LoginContext
124 module.initialize(subject, cbHandler, sharedState, map);
151 sharedState.put(ISAuthConstants.SHARED_STATE_USERNAME,
157 sharedState.put(ISAuthConstants.SHARED_STATE_PASSWORD,
167 sharedState.put(ISAuthConstants.SHARED_STATE_USERNAME, username);
168 sharedState.put(ISAuthConstants.SHARED_STATE_PASSWORD, new String(
/forgerock/openam-v13/openam-authentication/openam-auth-nt/src/main/java/com/sun/identity/authentication/modules/nt/
H A DNT.java65 private Map sharedState; field in class:NT
82 public void init(Subject subject, Map sharedState, Map options) { argument
90 this.sharedState = sharedState;
161 userName = (String) sharedState.get(getUserKey());
162 userPassword = (String) sharedState.get(getPwdKey());
371 sharedState = null;
/forgerock/openam-v13/openam-authentication/openam-auth-scripted/src/main/java/org/forgerock/openam/authentication/modules/scripted/
H A DScripted.java77 public static final String SHARED_STATE = "sharedState";
91 protected Map<String, Object> sharedState; field in class:Scripted
97 public void init(Subject subject, Map sharedState, Map options) { argument
98 this.sharedState = sharedState;
100 userName = (String) sharedState.get(getUserKey());
145 scriptVariables.put(SHARED_STATE, sharedState);
161 sharedState.put(CLIENT_SCRIPT_OUTPUT_DATA_VARIABLE_NAME, clientScriptOutputData);
/forgerock/openam/openam-authentication/openam-auth-nt/src/main/java/com/sun/identity/authentication/modules/nt/
H A DNT.java65 private Map sharedState; field in class:NT
82 public void init(Subject subject, Map sharedState, Map options) { argument
90 this.sharedState = sharedState;
161 userName = (String) sharedState.get(getUserKey());
162 userPassword = (String) sharedState.get(getPwdKey());
371 sharedState = null;
/forgerock/openam/openam-authentication/openam-auth-scripted/src/main/java/org/forgerock/openam/authentication/modules/scripted/
H A DScripted.java77 public static final String SHARED_STATE = "sharedState";
91 protected Map<String, Object> sharedState; field in class:Scripted
97 public void init(Subject subject, Map sharedState, Map options) { argument
98 this.sharedState = sharedState;
100 userName = (String) sharedState.get(getUserKey());
145 scriptVariables.put(SHARED_STATE, sharedState);
161 sharedState.put(CLIENT_SCRIPT_OUTPUT_DATA_VARIABLE_NAME, clientScriptOutputData);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/audit/
H A DAuthenticationModuleEventAuditor.java93 Map sharedState = loginState == null ? emptyMap() : loginState.getSharedState();
96 if ((isEmpty(principalName) || isEmpty(authId)) && sharedState.containsKey(SHARED_STATE_USERNAME)) {
97 principalName = (String) sharedState.get(SHARED_STATE_USERNAME);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/audit/
H A DAbstractAuthenticationEventAuditor.java136 Map sharedState = loginState == null ? emptyMap() : loginState.getSharedState();
137 if (CollectionUtils.isNotEmpty(sharedState)) {
138 principal = (String) sharedState.get(SHARED_STATE_USERNAME);

Completed in 86 milliseconds

1234