public interface ServletRequestAttributeListener
extends java.util.EventListener
Modifier and Type | Method and Description |
---|---|
void |
attributeAdded(ServletRequestAttributeEvent event)
Callback when a ServletRequest attribute is added.
|
void |
attributeRemoved(ServletRequestAttributeEvent event)
Callback when a ServletRequest attribute is removed.
|
void |
attributeReplaced(ServletRequestAttributeEvent event)
Callback when a ServletRequest attribute is replaced.
|
void attributeAdded(ServletRequestAttributeEvent event)
event
- the event for the added attribute event.void attributeRemoved(ServletRequestAttributeEvent event)
event
- the event for the removed attribute event.void attributeReplaced(ServletRequestAttributeEvent event)
event
- the event for the replaced attribute event.