javax.servlet
Interface ServletRequestAttributeListener
- EventListener
public interface ServletRequestAttributeListener
extends EventListener
Implementations of this interface receive notifications of
changes to the attribute list on the servlet request of a
web application.
To receive notification events, the implementation class
must be configured in the deployment descriptor for the web application.
$Revision: 1.3 $ $Date: 2004/09/23 08:05:18 $
attributeAdded
public void attributeAdded(ServletRequestAttributeEvent srae)
Notification that a new attribute was added to the servlet request.
Called after the attribute is added.
attributeRemoved
public void attributeRemoved(ServletRequestAttributeEvent srae)
Notification that an existing attribute has been removed from the
servlet request. Called after the attribute is removed.
attributeReplaced
public void attributeReplaced(ServletRequestAttributeEvent srae)
Notification that an attribute on the servlet request has been
replaced. Called after the attribute is replaced.
Copyright © 2004 Mortbay Consulting Pty. Ltd. All Rights Reserved.