Searched refs:amLoginModuleBinder (Results 1 - 9 of 9) sorted by relevance

/forgerock/openam/openam-authentication/openam-auth-common/src/main/java/org/forgerock/openam/authentication/modules/common/
H A DAuthLoginModule.java41 private AMLoginModuleBinder amLoginModuleBinder; field in class:AuthLoginModule
46 * @param amLoginModuleBinder An instance of the AMLoginModuleBinder.
48 public void setAMLoginModule(AMLoginModuleBinder amLoginModuleBinder) { argument
49 this.amLoginModuleBinder = amLoginModuleBinder;
95 return amLoginModuleBinder.getCallbackHandler();
104 return amLoginModuleBinder.getHttpServletRequest();
115 return amLoginModuleBinder.getHttpServletResponse();
124 return amLoginModuleBinder.getRequestOrg();
136 amLoginModuleBinder
[all...]
/forgerock/openam-v13/openam-authentication/openam-auth-common/src/main/java/org/forgerock/openam/authentication/modules/common/
H A DAuthLoginModule.java42 private AMLoginModuleBinder amLoginModuleBinder; field in class:AuthLoginModule
47 * @param amLoginModuleBinder An instance of the AMLoginModuleBinder.
49 public void setAMLoginModule(AMLoginModuleBinder amLoginModuleBinder) { argument
50 this.amLoginModuleBinder = amLoginModuleBinder;
96 return amLoginModuleBinder.getCallbackHandler();
105 return amLoginModuleBinder.getHttpServletRequest();
116 return amLoginModuleBinder.getHttpServletResponse();
125 return amLoginModuleBinder.getRequestOrg();
137 amLoginModuleBinder
[all...]
/forgerock/openam-v13/openam-authentication/openam-auth-common/src/test/java/org/forgerock/openam/authentication/modules/common/
H A DAuthLoginModuleTest.java36 private AMLoginModuleBinder amLoginModuleBinder; field in class:AuthLoginModuleTest
41 amLoginModuleBinder = mock(AMLoginModuleBinder.class);
58 authLoginModule.setAMLoginModule(amLoginModuleBinder);
70 verify(amLoginModuleBinder).getCallbackHandler();
82 verify(amLoginModuleBinder).getHttpServletRequest();
94 verify(amLoginModuleBinder).getHttpServletResponse();
106 verify(amLoginModuleBinder).getRequestOrg();
120 verify(amLoginModuleBinder).setUserSessionProperty(name, value);
H A DJaspiAuthModuleWrapperTest.java51 private AMLoginModuleBinder amLoginModuleBinder; field in class:JaspiAuthModuleWrapperTest
60 amLoginModuleBinder = mock(AMLoginModuleBinder.class);
96 jaspiAuthModuleWrapper.setAMLoginModule(amLoginModuleBinder);
100 given(amLoginModuleBinder.getHttpServletRequest()).willReturn(request);
101 given(amLoginModuleBinder.getHttpServletResponse()).willReturn(response);
391 verifyZeroInteractions(amLoginModuleBinder, serverAuthModule);
406 verifyZeroInteractions(amLoginModuleBinder, serverAuthModule);
/forgerock/openam/openam-authentication/openam-auth-common/src/test/java/org/forgerock/openam/authentication/modules/common/
H A DAuthLoginModuleTest.java36 private AMLoginModuleBinder amLoginModuleBinder; field in class:AuthLoginModuleTest
41 amLoginModuleBinder = mock(AMLoginModuleBinder.class);
58 authLoginModule.setAMLoginModule(amLoginModuleBinder);
70 verify(amLoginModuleBinder).getCallbackHandler();
82 verify(amLoginModuleBinder).getHttpServletRequest();
94 verify(amLoginModuleBinder).getHttpServletResponse();
106 verify(amLoginModuleBinder).getRequestOrg();
120 verify(amLoginModuleBinder).setUserSessionProperty(name, value);
H A DJaspiAuthModuleWrapperTest.java46 AMLoginModuleBinder amLoginModuleBinder = mock(AMLoginModuleBinder.class);
53 given(amLoginModuleBinder.getHttpServletRequest()).willReturn(request);
54 given(amLoginModuleBinder.getHttpServletResponse()).willReturn(response);
H A DJaspiAuthLoginModuleTest.java79 AMLoginModuleBinder amLoginModuleBinder = mock(AMLoginModuleBinder.class);
81 jaspiAuthLoginModule.setAMLoginModule(amLoginModuleBinder);
85 given(amLoginModuleBinder.getHttpServletRequest()).willReturn(request);
86 given(amLoginModuleBinder.getHttpServletResponse()).willReturn(response);
/forgerock/openam/openam-authentication/openam-auth-persistentcookie/src/test/java/org/forgerock/openam/authentication/modules/persistentcookie/
H A DPersistentCookieAuthModuleTest.java54 private AMLoginModuleBinder amLoginModuleBinder; field in class:PersistentCookieAuthModuleTest
62 amLoginModuleBinder = mock(AMLoginModuleBinder.class);
71 persistentCookieAuthModule.setAMLoginModule(amLoginModuleBinder);
75 given(amLoginModuleBinder.getHttpServletRequest()).willReturn(request);
76 given(amLoginModuleBinder.getHttpServletResponse()).willReturn(response);
77 given(amLoginModuleBinder.getRequestOrg()).willReturn("REQUEST_ORG");
211 verify(amLoginModuleBinder).setUserSessionProperty(JwtSessionModule.TOKEN_IDLE_TIME_IN_MINUTES_CLAIM_KEY, "60");
212 verify(amLoginModuleBinder).setUserSessionProperty(JwtSessionModule.MAX_TOKEN_LIFE_IN_MINUTES_KEY, "300");
244 verify(amLoginModuleBinder).setUserSessionProperty(JwtSessionModule.TOKEN_IDLE_TIME_IN_MINUTES_CLAIM_KEY, "60");
245 verify(amLoginModuleBinder)
[all...]
/forgerock/openam-v13/openam-authentication/openam-auth-persistentcookie/src/test/java/org/forgerock/openam/authentication/modules/persistentcookie/
H A DPersistentCookieAuthModuleTest.java66 private AMLoginModuleBinder amLoginModuleBinder; field in class:PersistentCookieAuthModuleTest
74 amLoginModuleBinder = mock(AMLoginModuleBinder.class);
83 persistentCookieAuthModule.setAMLoginModule(amLoginModuleBinder);
92 given(amLoginModuleBinder.getHttpServletRequest()).willReturn(request);
93 given(amLoginModuleBinder.getHttpServletResponse()).willReturn(response);
94 given(amLoginModuleBinder.getRequestOrg()).willReturn("REQUEST_ORG");
220 verify(amLoginModuleBinder).setUserSessionProperty(JwtSessionModule.TOKEN_IDLE_TIME_IN_MINUTES_CLAIM_KEY, "60");
221 verify(amLoginModuleBinder).setUserSessionProperty(JwtSessionModule.MAX_TOKEN_LIFE_IN_MINUTES_KEY, "300");
253 verify(amLoginModuleBinder).setUserSessionProperty(JwtSessionModule.TOKEN_IDLE_TIME_IN_MINUTES_CLAIM_KEY, "60");
254 verify(amLoginModuleBinder)
[all...]

Completed in 67 milliseconds