Uses of Interface
javax.servlet.http.HttpSession
-
Packages that use HttpSession Package Description javax.servlet.http javax.servlet.jsp -
-
Uses of HttpSession in javax.servlet.http
Methods in javax.servlet.http that return HttpSession Modifier and Type Method Description HttpSession
HttpServletRequest. getSession()
Returns the current session associated with this request, or if the request does not have a session, creates one.HttpSession
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.HttpSession
HttpSessionBindingEvent. getSession()
Returns the session to or from which the object is bound or unbound.HttpSession
HttpSessionContext. getSession(java.lang.String sessionId)
Deprecated.As of Java Servlet API 2.1 with no replacement.Constructors in javax.servlet.http with parameters of type HttpSession Constructor Description 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. -
Uses of HttpSession in javax.servlet.jsp
Methods in javax.servlet.jsp that return HttpSession Modifier and Type Method Description abstract HttpSession
PageContext. getSession()
-