Uses of Interface
javax.servlet.http.HttpSession

Packages that use HttpSession
javax.servlet.http The javax.servlet.http package contains a number of classes and interfaces that describe and define the contracts between a servlet class running under the HTTP protocol and the runtime environment provided for an instance of such a class by a conforming servlet container. 
javax.servlet.jsp Classes and interfaces for the Core JSP 2.0 API. 
org.mortbay.jetty   
org.mortbay.jetty.servlet   
org.mortbay.jetty.servlet.wadi   
 

Uses of HttpSession in javax.servlet.http
 

Methods in javax.servlet.http that return HttpSession
 HttpSession HttpServletRequest.getSession()
          Returns the current session associated with this request, or if the request does not have a session, creates one.
 HttpSession HttpSessionBindingEvent.getSession()
          Return the session that changed.
 HttpSession HttpSessionEvent.getSession()
          Return the session that changed.
 HttpSession HttpServletRequestWrapper.getSession()
          The default behavior of this method is to return getSession() on the wrapped request object.
 HttpSession HttpServletRequest.getSession(boolean create)
          Returns the current HttpSession associated with this request or, if there is no current session and create is true, returns a new session.
 HttpSession HttpServletRequestWrapper.getSession(boolean create)
          The default behavior of this method is to return getSession(boolean create) on the wrapped request object.
 HttpSession HttpSessionContext.getSession(java.lang.String sessionId)
          Deprecated. As of Java Servlet API 2.1 with no replacement. This method must return null and will be removed in a future version of this API.
 

Constructors in javax.servlet.http with parameters of type HttpSession
HttpSessionBindingEvent(HttpSession session, java.lang.String name)
          Constructs an event that notifies an object that it has been bound to or unbound from a session.
HttpSessionBindingEvent(HttpSession session, java.lang.String name, java.lang.Object value)
          Constructs an event that notifies an object that it has been bound to or unbound from a session.
HttpSessionEvent(HttpSession source)
          Construct a session event from the given source.
 

Uses of HttpSession in javax.servlet.jsp
 

Methods in javax.servlet.jsp that return HttpSession
abstract  HttpSession PageContext.getSession()
          The current value of the session object (an HttpSession).
 

Uses of HttpSession in org.mortbay.jetty
 

Methods in org.mortbay.jetty that return HttpSession
 HttpSession SessionManager.getHttpSession(java.lang.String id)
           
 HttpSession Request.getSession()
           
 HttpSession Request.getSession(boolean create)
           
 HttpSession SessionManager.newHttpSession(HttpServletRequest request)
           
 HttpSession Request.recoverNewSession(java.lang.Object key)
           
 

Methods in org.mortbay.jetty with parameters of type HttpSession
 Cookie SessionManager.access(HttpSession session, boolean secure)
          Called by the SessionHandler when a session is access by a request
 void SessionIdManager.addSession(HttpSession session)
          Add a session to the list of known sessions for a given ID.
 void SessionManager.complete(HttpSession session)
          Called by the SessionHandler when a reqeuest is not longer handling a session.
 java.lang.String SessionManager.getClusterId(HttpSession session)
          Get the session cluster id
 java.lang.String SessionManager.getNodeId(HttpSession session)
          Get the session node id
 Cookie SessionManager.getSessionCookie(HttpSession session, java.lang.String contextPath, boolean requestIsSecure)
          Get a Cookie for a session.
 boolean SessionManager.isValid(HttpSession session)
           
 void SessionIdManager.removeSession(HttpSession session)
          Remove session from the list of known sessions for a given ID.
 void Request.saveNewSession(java.lang.Object key, HttpSession session)
           
 void Request.setSession(HttpSession session)
           
 

Uses of HttpSession in org.mortbay.jetty.servlet
 

Subinterfaces of HttpSession in org.mortbay.jetty.servlet
static interface AbstractSessionManager.SessionIf
          Interface that any session wrapper should implement so that SessionManager may access the Jetty session implementation.
 

Classes in org.mortbay.jetty.servlet that implement HttpSession
 class AbstractSessionManager.Session
           Implements javax.servlet.HttpSession from the javax.servlet package.
protected  class HashSessionManager.Session
           
 

Methods in org.mortbay.jetty.servlet that return HttpSession
 HttpSession AbstractSessionManager.getHttpSession(java.lang.String nodeId)
           
 HttpSession AbstractSessionManager.NullSessionContext.getSession(java.lang.String id)
          Deprecated. From HttpSessionContext
 HttpSession AbstractSessionManager.newHttpSession(HttpServletRequest request)
          Create a new HttpSession for a request
 

Methods in org.mortbay.jetty.servlet with parameters of type HttpSession
 Cookie AbstractSessionManager.access(HttpSession session, boolean secure)
           
 void HashSessionIdManager.addSession(HttpSession session)
           
 void AbstractSessionManager.complete(HttpSession session)
           
 java.lang.String AbstractSessionManager.getClusterId(HttpSession session)
           
 java.lang.String AbstractSessionManager.getNodeId(HttpSession session)
           
 Cookie AbstractSessionManager.getSessionCookie(HttpSession session, java.lang.String contextPath, boolean requestIsSecure)
           
 boolean AbstractSessionManager.isValid(HttpSession session)
           
 void HashSessionIdManager.removeSession(HttpSession session)
           
 void AbstractSessionManager.removeSession(HttpSession session, boolean invalidate)
          Remove session from manager
 

Uses of HttpSession in org.mortbay.jetty.servlet.wadi
 

Classes in org.mortbay.jetty.servlet.wadi that implement HttpSession
 class WadiSessionManager.ClusteredSession
           
 

Methods in org.mortbay.jetty.servlet.wadi with parameters of type HttpSession
 void WadiSessionManager.complete(HttpSession session)
           
 



Copyright © 1995-2009 Mort Bay Consulting. All Rights Reserved.