javax.servlet.http
Interface HttpSessionAttributesListener
- All Superinterfaces:
- java.util.EventListener
- public interface HttpSessionAttributesListener
- extends java.util.EventListener
This listener interface can be implemented in order to
get notifications of changes made to sessions within this web application.
- Since:
- v 2.3
attributeAdded
public void attributeAdded(HttpSessionBindingEvent se)
- Notification that an attribute has been added to a session.
attributeRemoved
public void attributeRemoved(HttpSessionBindingEvent se)
- Notification that an attribute has been removed from a session.
attributeReplaced
public void attributeReplaced(HttpSessionBindingEvent se)
- Notification that an attribute has been replaced in a session.
Copyright (c) 1999-2000 The Apache Software Foundation. All Rights Reserved.