Frames | No Frames |
Constructors with parameter type javax.servlet.http.HttpSession | |
Constructs an event that notifies an object that it
has been bound to or unbound from a session. | |
Constructs an event that notifies an object that it
has been bound to or unbound from a session. | |
Construct a session event from the given source. |
Methods with return type javax.servlet.http.HttpSession | |
HttpSession |
Returns the current session associated with this request,
or if the request does not have a session, creates one. |
HttpSession | The default behavior of this method is to return getSession()
on the wrapped request object. |
HttpSession | Return the session that changed. |
HttpSession | Return the session that changed. |
HttpSession | HttpSessionContext.getSession(String sessionId) |
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. |