Uses of Interface
javax.servlet.http.HttpSession

Packages that use HttpSession
com.caucho.jsp   
com.caucho.portal.generic   
com.caucho.quercus.env   
com.caucho.server.connection   
com.caucho.server.security   
com.caucho.server.session   
javax.servlet.http   
javax.servlet.jsp   
javax.servlet.jsp.jstl.core   
 

Uses of HttpSession in com.caucho.jsp
 

Methods in com.caucho.jsp that return HttpSession
 HttpSession PageContextImpl.getSession()
           
 HttpSession PageContextWrapper.getSession()
           
 HttpSession PageContextImpl.getSessionScope()
          Returns the session, throwing an IllegalStateException if it's not available.
 

Methods in com.caucho.jsp with parameters of type HttpSession
static PageContextImpl QJspFactory.allocatePageContext(Servlet servlet, WebApp app, ServletRequest request, ServletResponse response, java.lang.String errorPageURL, HttpSession session, int buffer, boolean autoFlush, boolean isPrintNullAsBlank)
          The jsp page context initialization.
 PageContextImpl PageManager.allocatePageContext(Servlet servlet, WebApp app, ServletRequest request, ServletResponse response, java.lang.String errorPageURL, HttpSession session, int buffer, boolean autoFlush, boolean isPrintNullAsBlank)
          The jsp page context initialization.
 void PageContextImpl.initialize(Servlet servlet, WebApp app, ServletRequest request, ServletResponse response, java.lang.String errorPage, HttpSession session, int bufferSize, boolean autoFlush, boolean isPrintNullAsBlank)
           
 

Uses of HttpSession in com.caucho.portal.generic
 

Methods in com.caucho.portal.generic that return HttpSession
 HttpSession HttpPortletSession.getHttpSession()
           
 HttpSession HttpPortletRequestDispatcher.HttpPortletRequestWrapper.getSession()
           
 HttpSession HttpPortletRequestDispatcher.HttpPortletRequestWrapper.getSession(boolean create)
           
 

Methods in com.caucho.portal.generic with parameters of type HttpSession
 void HttpPortletSession.start(PortletContext portletContext, HttpSession httpSession)
           
 

Uses of HttpSession in com.caucho.quercus.env
 

Methods in com.caucho.quercus.env that return HttpSession
 HttpSession Env.getJavaSession()
          Returns the Java Http session.
 

Uses of HttpSession in com.caucho.server.connection
 

Methods in com.caucho.server.connection that return HttpSession
 HttpSession AbstractHttpRequest.getLoadedSession()
          Returns the current session.
 HttpSession RequestAdapter.getMemorySession()
           
 HttpSession CauchoRequest.getMemorySession()
           
 HttpSession AbstractHttpRequest.getMemorySession()
          Returns the memory session.
 HttpSession RequestWrapper.getSession()
          Returns the current session, creating one if necessary.
 HttpSession AbstractHttpRequest.getSession()
          Returns the current session, creating one if necessary.
 HttpSession RequestAdapter.getSession(boolean create)
           
 HttpSession RequestWrapper.getSession(boolean create)
          Returns a session.
 HttpSession AbstractHttpRequest.getSession(boolean create)
          Returns the current session.
 

Uses of HttpSession in com.caucho.server.security
 

Methods in com.caucho.server.security with parameters of type HttpSession
 void ServletAuthenticator.logout(ServletContext application, HttpSession session, java.lang.String sessionId, java.security.Principal user)
          Logs the user out from the given request.
 void AuthenticatorList.logout(ServletContext application, HttpSession timeoutSession, java.lang.String sessionId, java.security.Principal user)
           
 void AbstractAuthenticator.logout(ServletContext application, HttpSession timeoutSession, java.lang.String sessionId, java.security.Principal user)
          Logs the user out from the session.
 

Uses of HttpSession in com.caucho.server.session
 

Classes in com.caucho.server.session that implement HttpSession
 class SessionImpl
          Implements a HTTP session.
 

Uses of HttpSession in javax.servlet.http
 

Methods in javax.servlet.http that return HttpSession
 HttpSession HttpServletRequest.getSession()
          Returns the current session, creating one if necessary.
 HttpSession HttpSessionEvent.getSession()
          Returns the session.
 HttpSession HttpSessionBindingEvent.getSession()
          Returns the session.
 HttpSession HttpServletRequestWrapper.getSession()
          Returns the current session, creating one if necessary.
 HttpSession HttpServletRequest.getSession(boolean create)
          Returns a session.
 HttpSession HttpServletRequestWrapper.getSession(boolean create)
          Returns a session.
 HttpSession HttpSessionContext.getSession(java.lang.String id)
          Deprecated.  
 

Constructors in javax.servlet.http with parameters of type HttpSession
HttpSessionBindingEvent(HttpSession session, java.lang.String name)
          Create a new session binding event.
HttpSessionBindingEvent(HttpSession session, java.lang.String name, java.lang.Object value)
          Create a new session binding event.
HttpSessionEvent(HttpSession session)
          Create a new session event.
 

Uses of HttpSession in javax.servlet.jsp
 

Methods in javax.servlet.jsp that return HttpSession
abstract  HttpSession PageContext.getSession()
          Returns the request's session.
 

Uses of HttpSession in javax.servlet.jsp.jstl.core
 

Methods in javax.servlet.jsp.jstl.core with parameters of type HttpSession
static java.lang.Object Config.get(HttpSession session, java.lang.String name)
           
static void Config.remove(HttpSession session, java.lang.String name)
           
static void Config.set(HttpSession session, java.lang.String name, java.lang.Object var)