Interface HttpSessionListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
org.jboss.weld.servlet.api.helpers.ForwardingServletListener, WeldInitListener

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

    • sessionCreated

      default void sessionCreated(HttpSessionEvent httpSessionEvent)
      Handle the HTTP session created event.
      Parameters:
      httpSessionEvent - the HTTP session event.
    • sessionDestroyed

      default void sessionDestroyed(HttpSessionEvent httpSessionEvent)
      Handle the HTTP session destroyed event.
      Parameters:
      httpSessionEvent - the HTTP session event.