javax.servlet.http
public class: HttpSessionEvent [javadoc |
source]
java.lang.Object
java.util.EventObject
javax.servlet.http.HttpSessionEvent
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
HttpSessionBindingEvent
This is the class representing event notifications for
changes to sessions within a web application.
| Method from javax.servlet.http.HttpSessionEvent Summary: |
|---|
|
getSession |
| Method from javax.servlet.http.HttpSessionEvent Detail: |
public HttpSession getSession() {
return (HttpSession) super.getSource();
}
Return the session that changed. |