Schnittstelle SessionBindingListener


public interface SessionBindingListener
This interface is modelled after javax.servlet.http.HttpSessionBindingListener.
Version:
$Id$
Autor:
Daniel Rall
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    void
    Notifies the object that it is being bound to a session and identifies the session.
    void
    Notifies the object that it is being unbound from a session and identifies the session.
  • Methodendetails

    • valueBound

      void valueBound(SessionBindingEvent event)
      Notifies the object that it is being bound to a session and identifies the session.
      Parameter:
      event - A SessionBindingEvent object.
    • valueUnbound

      void valueUnbound(SessionBindingEvent event)
      Notifies the object that it is being unbound from a session and identifies the session.
      Parameter:
      event - A SessionBindingEvent object.