Home | History | Annotate | Download | only in sip

Lines Matching refs:Dialog

20 import javax.sip.Dialog;
25 * dialog does not receive or send an ACK.
36 * Constructs a DialogTerminatedEvent to indicate a dialog
40 * @param dialog - the dialog that timed out.
42 public DialogTimeoutEvent(Object source, Dialog dialog, Reason reason) {
44 m_dialog = dialog;
50 * Gets the Dialog associated with the event. This
51 * enables application developers to access the dialog associated to this
54 * @return the dialog associated with the response event or null if there is no dialog.
57 public Dialog getDialog() {
62 * The reason for the Dialog Timeout Event being delivered to the application.
71 private Dialog m_dialog = null;