| |
|
| javax.servlet.http.HttpSessionAttributeListener
HttpSessionAttributeListener | public interface HttpSessionAttributeListener extends EventListener(Code) | | This listener interface can be implemented in order to
get notifications of changes to the attribute lists of sessions within
this web application.
since: v 2.3 |
attributeAdded | public void attributeAdded(HttpSessionBindingEvent se)(Code) | | Notification that an attribute has been added to a session. Called after the attribute is added.
|
attributeRemoved | public void attributeRemoved(HttpSessionBindingEvent se)(Code) | | Notification that an attribute has been removed from a session. Called after the attribute is removed.
|
attributeReplaced | public void attributeReplaced(HttpSessionBindingEvent se)(Code) | | Notification that an attribute has been replaced in a session. Called after the attribute is replaced.
|
|
|
|