| |
|
| javax.servlet.ServletRequestAttributeListener
ServletRequestAttributeListener | public interface ServletRequestAttributeListener extends EventListener(Code) | | Interface for a listener receiving events when any of the ServletRequest
attributes change.
since: Servlet 2.4 |
attributeAdded | public void attributeAdded(ServletRequestAttributeEvent event)(Code) | | Callback when a ServletRequest attribute is added.
Parameters: event - the event for the added attribute event. |
attributeRemoved | public void attributeRemoved(ServletRequestAttributeEvent event)(Code) | | Callback when a ServletRequest attribute is removed.
Parameters: event - the event for the removed attribute event. |
attributeReplaced | public void attributeReplaced(ServletRequestAttributeEvent event)(Code) | | Callback when a ServletRequest attribute is replaced.
Parameters: event - the event for the replaced attribute event. |
|
|
|