javax.servlet.sip
Interface SipApplicationSessionAttributeListener

All Superinterfaces:
java.util.EventListener

public interface SipApplicationSessionAttributeListener
extends java.util.EventListener

This listener interface can be implemented in order to get notifications of changes to the attribute lists of application sessions.

Since:
1.1

Method Summary
 void attributeAdded(SipApplicationSessionBindingEvent ev)
          Notification that an attribute has been added to an application session.
 void attributeRemoved(SipApplicationSessionBindingEvent ev)
          Notification that an attribute has been removed from an application session.
 void attributeReplaced(SipApplicationSessionBindingEvent ev)
          Notification that an attribute has been replaced in an application session.
 

Method Detail

attributeAdded

void attributeAdded(SipApplicationSessionBindingEvent ev)
Notification that an attribute has been added to an application session. Called after the attribute is added.

Parameters:
ev - event identifying the affected SipApplicationSession

attributeRemoved

void attributeRemoved(SipApplicationSessionBindingEvent ev)
Notification that an attribute has been removed from an application session. Called after the attribute is removed.

Parameters:
ev - event identifying the affected SipApplicationSession

attributeReplaced

void attributeReplaced(SipApplicationSessionBindingEvent ev)
Notification that an attribute has been replaced in an application session. Called after the attribute is replaced.

Parameters:
ev - event identifying the affected SipApplicationSession