Searched refs:authSession (Results 1 - 13 of 13) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DNoSessionActivator.java36 * @param authSession the session used for authentication.
41 final InternalSession authSession, final Subject subject,
43 sessionService.destroyInternalSession(authSession.getID());
40 activateSession(final LoginState loginState, final SessionService sessionService, final InternalSession authSession, final Subject subject, final Object loginContext) argument
H A DDefaultSessionActivator.java62 final InternalSession authSession, final Subject subject, final Object loginContext)
69 return updateSessions(session, loginState, session, authSession, sessionService, subject, loginContext);
77 InternalSession sessionToActivate, InternalSession authSession,
81 final SessionID authSessionId = authSession.getID();
89 putAllPropertiesFromAuthSession(authSession, sessionToActivate);
113 protected void putAllPropertiesFromAuthSession(InternalSession authSession, InternalSession sessionToUpdate) { argument
114 Enumeration<String> authSessionProperties = authSession.getPropertyNames();
117 String value = authSession.getProperty(key);
61 activateSession(final LoginState loginState, final SessionService sessionService, final InternalSession authSession, final Subject subject, final Object loginContext) argument
76 updateSessions(InternalSession newSession, LoginState loginState, InternalSession sessionToActivate, InternalSession authSession, SessionService sessionService, Subject subject, Object loginContext) argument
H A DSessionActivator.java35 * @param authSession the session used for authentication.
42 InternalSession authSession, Subject subject, Object loginContext) throws AuthException;
41 activateSession(LoginState loginState, SessionService sessionService, InternalSession authSession, Subject subject, Object loginContext) argument
H A DStatelessSessionActivator.java51 final InternalSession authSession, final Subject subject, final Object loginContext)
77 return updateSessions(session, loginState, session, authSession, sessionService, subject, loginContext);
50 activateSession(final LoginState loginState, final SessionService sessionService, final InternalSession authSession, final Subject subject, final Object loginContext) argument
H A DAuthD.java242 final Session authSession = initAuthSession();
243 ssoAuthSession = initSsoAuthSession(authSession);
821 final Session authSession = getSessionService().getAuthenticationSession(defaultOrg, null);
822 if (authSession == null) {
827 String clientID = authSession.getClientID();
828 authSession.setProperty("Principal", clientID);
829 authSession.setProperty("Organization", defaultOrg);
830 authSession.setProperty("Host",
831 authSession.getID().getSessionServer());
835 authSession
841 initSsoAuthSession(Session authSession) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DNoSessionActivator.java36 * @param authSession the session used for authentication.
41 final InternalSession authSession, final Subject subject) {
42 sessionService.destroyAuthenticationSession(authSession.getID());
40 activateSession(final LoginState loginState, final SessionService sessionService, final InternalSession authSession, final Subject subject) argument
H A DDefaultSessionActivator.java62 final InternalSession authSession, final Subject subject)
69 return updateSessions(session, loginState, session, authSession, sessionService, subject);
77 InternalSession sessionToActivate, InternalSession authSession,
81 final SessionID authSessionId = authSession.getID();
89 putAllPropertiesFromAuthSession(authSession, sessionToActivate);
108 protected void putAllPropertiesFromAuthSession(InternalSession authSession, InternalSession sessionToUpdate) { argument
109 Enumeration<String> authSessionProperties = authSession.getPropertyNames();
112 String value = authSession.getProperty(key);
61 activateSession(final LoginState loginState, final SessionService sessionService, final InternalSession authSession, final Subject subject) argument
76 updateSessions(InternalSession newSession, LoginState loginState, InternalSession sessionToActivate, InternalSession authSession, SessionService sessionService, Subject subject) argument
H A DSessionActivator.java35 * @param authSession the session used for authentication.
40 boolean activateSession(LoginState loginState, SessionService sessionService, InternalSession authSession, argument
H A DStatelessSessionActivator.java51 final InternalSession authSession, final Subject subject)
77 return updateSessions(session, loginState, session, authSession, sessionService, subject);
50 activateSession(final LoginState loginState, final SessionService sessionService, final InternalSession authSession, final Subject subject) argument
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/authentication/service/activators/
H A DForceAuthSessionActivator.java44 final InternalSession authSession, final Subject subject, final Object loginContext)
53 return updateSessions(session, loginState, loginState.getOldSession(), authSession, sessionService, subject,
43 activateSession(final LoginState loginState, final SessionService sessionService, final InternalSession authSession, final Subject subject, final Object loginContext) argument
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/authentication/service/activators/
H A DForceAuthSessionActivator.java44 final InternalSession authSession, final Subject subject) throws AuthException {
50 return updateSessions(session, loginState, loginState.getOldSession(), authSession, sessionService, subject);
43 activateSession(final LoginState loginState, final SessionService sessionService, final InternalSession authSession, final Subject subject) argument
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/authentication/service/
H A DAuthSessionFactory.java49 private SSOToken authSession; // cached auth session field in class:AuthSessionFactory
77 if (authSession == null) {
79 authSession = initSsoAuthSession(initAuthSession(domain));
81 return authSession;
110 private SSOToken initSsoAuthSession(AMSession authSession) throws SSOException, SessionException { argument
112 return ssoManager.createSSOToken(authSession.getID().toString());
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DSessionService.java157 private InternalSession authSession = null; field in class:SessionService
335 // and AuthD then keeps a local copy of the returned Session. The authSession reference may
337 // we're not using authSession anywhere else in this class and it isn't referenced by the returned
342 if (authSession == null) {
344 authSession = getServiceSession(domain, httpSession);
346 return authSession != null ? sessionCache.getSession(authSession.getID()) : null;

Completed in 77 milliseconds