Searched defs:httpSession (Results 1 - 6 of 6) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DInternalSessionFactory.java95 * @param httpSession Http Session
98 public InternalSession newInternalSession(String domain, HttpSession httpSession, boolean stateless) { argument
100 return newInternalSession(domain, httpSession, true, stateless);
111 * @param httpSession Http Session
113 * httpSession is null, it will cause SessionService to create a
117 InternalSession newInternalSession(String domain, HttpSession httpSession, argument
122 && httpSession == null && forceHttpSessionCreation) {
127 return generateInternalSession(sid, httpSession, stateless);
130 private InternalSession generateInternalSession(SessionID sid, HttpSession httpSession, boolean stateless) throws SessionException { argument
133 session.setHttpSession(httpSession);
[all...]
H A DSessionService.java332 * @param httpSession HttpSession
340 HttpSession httpSession) {
344 authSession = getServiceSession(domain, httpSession);
357 * @param httpSession HttpSession
360 private InternalSession getServiceSession(String domain, HttpSession httpSession) { argument
369 InternalSession session = internalSessionFactory.newInternalSession(domain, httpSession, false, false);
451 public InternalSession newInternalSession(String domain, HttpSession httpSession, boolean stateless) { argument
452 return internalSessionFactory.newInternalSession(domain, httpSession, stateless);
1574 InternalSession retrieveSession(SessionID sid, HttpSession httpSession) { argument
1575 if (serviceConfig.isSessionFailoverEnabled() && httpSession !
339 getAuthenticationSession(String domain, HttpSession httpSession) argument
1743 handleSaveSession(SessionID sid, HttpSession httpSession) argument
1876 doSaveSession(InternalSession session, HttpSession httpSession) argument
[all...]
H A DInternalSession.java160 transient private HttpSession httpSession; field in class:InternalSession
759 if (httpSession != null) {
760 int httpIdleTime = httpSession.getMaxInactiveInterval();
762 httpSession.setMaxInactiveInterval(((int) maxIdleTime) * 60);
1478 if (httpSession != null) {
1479 creationTime = httpSession.getCreationTime() / 1000;
1715 httpSession = hSession;
1722 return (httpSession);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/server/
H A DAuthContextLocal.java133 protected HttpSession httpSession; field in class:AuthContextLocal
897 httpSession = session;
903 * @return httpSession
906 return (httpSession);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/server/
H A DAuthContextLocal.java127 protected HttpSession httpSession; field in class:AuthContextLocal
866 httpSession = session;
872 * @return httpSession
875 return (httpSession);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAuthD.java546 * @param httpSession HTTP Session.
551 HttpSession httpSession,
555 is = getSessionService().newInternalSession(domain, httpSession, stateless);
549 newSession( String domain, HttpSession httpSession, boolean stateless) argument

Completed in 45 milliseconds