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 current HttpSession
associated with this request or, if there is no
current session and create is true, returns
a new session.
|
HttpSession |
HttpServletRequestWrapper.getSession() |
The default behavior of this method is to return getSession()
on the wrapped request object.
|
HttpSession |
HttpServletRequestWrapper.getSession(boolean create) |
The default behavior of this method is to return getSession(boolean create)
on the wrapped request object.
|
HttpSession |
HttpSessionBindingEvent.getSession() |
Return the session that changed.
|
HttpSession |
HttpSessionContext.getSession(String sessionId) |
Deprecated.
|
HttpSession |
HttpSessionEvent.getSession() |
Return the session that changed.
|