javax.servlet.sip
Interface SipSessionBindingListener

All Superinterfaces:
java.util.EventListener

public interface SipSessionBindingListener
extends java.util.EventListener

Causes an object to be notified when it is bound to or unbound from a SipSession. The object is notified by an SipSessionBindingEvent object. This may be as a result of a servlet programmer explicitly unbinding an attribute from a session, due to a session being invalidated, or due to a session timing out.

See Also:
SipSession, SipSessionBindingEvent

Method Summary
 void valueBound(SipSessionBindingEvent event)
          Notifies the object that it is being bound to a session and identifies the session.
 void valueUnbound(SipSessionBindingEvent event)
          Notifies the object that it is being unbound from a session and identifies the session.
 

Method Detail

valueBound

void valueBound(SipSessionBindingEvent event)
Notifies the object that it is being bound to a session and identifies the session.

Parameters:
event - the event that identifies the session

valueUnbound

void valueUnbound(SipSessionBindingEvent event)
Notifies the object that it is being unbound from a session and identifies the session.

Parameters:
event - the event that identifies the session