Package javax.servlet.http
Interface HttpSessionAttributeListener
- All Superinterfaces:
- EventListener
This listener interface can be implemented in order to get notifications of changes to the attribute lists of
 sessions within this web application.
- Since:
- Servlet 2.3
- 
Method SummaryModifier and TypeMethodDescriptionvoidNotification that an attribute has been added to a session.voidNotification that an attribute has been removed from a session.voidNotification that an attribute has been replaced in a session.
- 
Method Details- 
attributeAddedNotification that an attribute has been added to a session. Called after the attribute is added.- Parameters:
- se- Information about the added attribute
 
- 
attributeRemovedNotification that an attribute has been removed from a session. Called after the attribute is removed.- Parameters:
- se- Information about the removed attribute
 
- 
attributeReplacedNotification that an attribute has been replaced in a session. Called after the attribute is replaced.- Parameters:
- se- Information about the replaced attribute
 
 
-