Interface HttpSessionAttributeListener

All Superinterfaces:
java.util.EventListener

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

    • attributeAdded

      default void attributeAdded​(HttpSessionBindingEvent event)
      Handle the attribute added event.
      Parameters:
      event - the HTTP session binding event.
    • attributeRemoved

      default void attributeRemoved​(HttpSessionBindingEvent event)
      Handle the attribute removed event.
      Parameters:
      event - the HTTP session binding event.
    • attributeReplaced

      default void attributeReplaced​(HttpSessionBindingEvent event)
      Handle the attribute replaced event.
      Parameters:
      event - the HTTP session binding event.