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   
 

Uses of HttpSession in javax.servlet.http
 

Methods in javax.servlet.http that return HttpSession
 HttpSession HttpSessionEvent.getSession()
          Return the session that changed.
 HttpSession HttpSessionContext.getSession(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.
 HttpSession HttpSessionBindingEvent.getSession()
          Return the session that changed.
 HttpSession HttpServletRequestWrapper.getSession(boolean create)
          The default behavior of this method is to return getSession(boolean create) on the wrapped request object.
 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 HttpServletRequest.getSession()
          Returns the current session associated with this request, or if the request does not have a session, creates one.
 

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

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(String id)
           
 HttpSession SessionManager.newHttpSession(HttpServletRequest request)
           
 HttpSession Request.getSession()
           
 HttpSession Request.getSession(boolean create)
           
 HttpSession Request.recoverNewSession(Object key)
           
 

Methods in org.mortbay.jetty with parameters of type HttpSession
 Cookie SessionManager.getSessionCookie(HttpSession session, String contextPath, boolean requestIsSecure)
          Get a Cookie for a session.
 boolean SessionManager.isValid(HttpSession session)
           
 void SessionManager.access(HttpSession session)
          Called by the SessionHandler when a session is access by a request
 void SessionManager.complete(HttpSession session)
          Called by the SessionHandler when a reqeuest is not longer handling a session.
 void SessionIdManager.addSession(HttpSession session)
           
 void Request.setSession(HttpSession session)
           
 void Request.saveNewSession(Object key, HttpSession session)
           
 

Uses of HttpSession in org.mortbay.jetty.servlet
 

Classes in org.mortbay.jetty.servlet that implement HttpSession
 class AbstractSessionManager.Session
           
protected  class HashSessionManager.Session
           
 

Methods in org.mortbay.jetty.servlet that return HttpSession
 HttpSession AbstractSessionManager.getHttpSession(String id)
           
 HttpSession AbstractSessionManager.newHttpSession(HttpServletRequest request)
           
 HttpSession AbstractSessionManager.NullSessionContext.getSession(String id)
          Deprecated. From HttpSessionContext
 

Methods in org.mortbay.jetty.servlet with parameters of type HttpSession
 void HashSessionIdManager.addSession(HttpSession session)
           
 Cookie AbstractSessionManager.getSessionCookie(HttpSession session, String contextPath, boolean requestIsSecure)
           
 void AbstractSessionManager.access(HttpSession session)
           
 void AbstractSessionManager.complete(HttpSession session)
           
 boolean AbstractSessionManager.isValid(HttpSession session)