FileDocCategorySizeDatePackage
HttpSessionAttributeListener.javaAPI DocApache Tomcat 6.0.141658Fri Jul 20 04:20:36 BST 2007javax.servlet.http

HttpSessionAttributeListener

public interface HttpSessionAttributeListener implements 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
v 2.3

Fields Summary
Constructors Summary
Methods Summary
public voidattributeAdded(javax.servlet.http.HttpSessionBindingEvent se)
Notification that an attribute has been added to a session. Called after the attribute is added.

public voidattributeRemoved(javax.servlet.http.HttpSessionBindingEvent se)
Notification that an attribute has been removed from a session. Called after the attribute is removed.

public voidattributeReplaced(javax.servlet.http.HttpSessionBindingEvent se)
Notification that an attribute has been replaced in a session. Called after the attribute is replaced.