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