FileDocCategorySizeDatePackage
HttpSessionAttributeListener.javaAPI DocGlassfish v2 API2833Fri May 04 22:34:20 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.