Interface ServletContextAttributeListener

All Superinterfaces:
java.util.EventListener

public interface ServletContextAttributeListener
extends java.util.EventListener
The ServletContextAttributeListener API.
Author:
Manfred Riem ([email protected])
  • Method Details

    • attributeAdded

      default void attributeAdded​(ServletContextAttributeEvent event)
      Handle the attribute added event.
      Parameters:
      event - the event.
    • attributeRemoved

      default void attributeRemoved​(ServletContextAttributeEvent event)
      Handle the attribute removed event.
      Parameters:
      event - the event.
    • attributeReplaced

      default void attributeReplaced​(ServletContextAttributeEvent event)
      Handle the attribute replaced event.
      Parameters:
      event - the event.