.getSipApplicationSessionListeners();
SipApplicationSessionEvent sasEvent = new SipApplicationSessionEvent(this);
for (Iterator<SipApplicationSessionListener> lIter = listeners.iterator();
lIter.hasNext();) {
SipApplicationSessionListener list = lIter.next();
try {
list.sessionDestroyed(sasEvent);
} catch (Throwable t) {
logger.log(Level.WARNING, "sas_listener_session_destroyed_invocation_error", this);
logger.log(Level.WARNING, t.getMessage(), t);
}
}