* @param name
*/
private void attributeReplaced(String name,Object oldValue,Object newValue) {
callAttributeListeners(AttributeCallback.REPLACED, name);
if(oldValue instanceof SipSessionBindingListener){
((SipSessionBindingListener)oldValue).valueUnbound(new SipSessionBindingEvent(this,name));
}
if(newValue instanceof SipSessionBindingListener){
((SipSessionBindingListener)newValue).valueBound(new SipSessionBindingEvent(this,name));
}
}