Uses of Interface
javax.servlet.http.HttpSession
Packages that use HttpSession
-
Uses of HttpSession in javax.servlet.http
Methods in javax.servlet.http that return HttpSessionModifier and TypeMethodDescriptionHttpServletRequest.getSession()
Returns the current session associated with this request, or if the request does not have a session, creates one.HttpServletRequest.getSession
(boolean create) Returns the currentHttpSession
associated with this request or, if if there is no current session andcreate
is true, returns a new session.HttpServletRequestWrapper.getSession()
The default behavior of this method is to return getSession() on the wrapped request object.HttpServletRequestWrapper.getSession
(boolean create) The default behavior of this method is to return getSession(boolean create) on the wrapped request object.HttpSessionBindingEvent.getSession()
Return the session that changed.HttpSessionContext.getSession
(String sessionId) Deprecated.As of Java Servlet API 2.1 with no replacement.HttpSessionEvent.getSession()
Return the session that changed.Constructors in javax.servlet.http with parameters of type HttpSessionModifierConstructorDescriptionHttpSessionBindingEvent
(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.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 HttpSessionModifier and TypeMethodDescriptionabstract HttpSession
PageContext.getSession()
The current value of the session object (an HttpSession).