MjSip Stack
v1.6

org.zoolu.sip.dialog
Interface ExtendedInviteDialogListener

All Superinterfaces:
InviteDialogListener
All Known Implementing Classes:
ExtendedCall

public interface ExtendedInviteDialogListener
extends InviteDialogListener

An ExtendedInviteDialogListener listens for ExtendedInviteDialog events. It extends InviteDialogListener by adding ExtendedInviteDialog-specific callback functions.


Method Summary
 void onDlgAltRequest(InviteDialog dialog, java.lang.String method, java.lang.String body, Message msg)
          When an incoming request is received within the dialog different from INVITE, CANCEL, ACK, BYE, REFER, NOTIFY
 void onDlgAltResponse(InviteDialog dialog, java.lang.String method, int code, java.lang.String reason, java.lang.String body, Message msg)
          When a response is received for a request within the dialog different from INVITE, CANCEL, ACK, BYE, REFER, NOTIFY
 void onDlgNotify(InviteDialog dialog, java.lang.String event, java.lang.String sipfragment, Message msg)
          When an incoming NOTIFY request is received within the dialog
 void onDlgRefer(InviteDialog dialog, NameAddress refer_to, NameAddress referred_by, Message msg)
          When an incoming REFER request is received within the dialog
 void onDlgReferResponse(InviteDialog dialog, int code, java.lang.String reason, Message msg)
          When a response is received for a REFER request within the dialog
 
Methods inherited from interface org.zoolu.sip.dialog.InviteDialogListener
onDlgAck, onDlgBye, onDlgByeFailureResponse, onDlgByeSuccessResponse, onDlgCall, onDlgCancel, onDlgClose, onDlgInvite, onDlgInviteFailureResponse, onDlgInviteProvisionalResponse, onDlgInviteRedirectResponse, onDlgInviteSuccessResponse, onDlgReInvite, onDlgReInviteFailureResponse, onDlgReInviteProvisionalResponse, onDlgReInviteSuccessResponse, onDlgReInviteTimeout, onDlgTimeout
 

Method Detail

onDlgRefer

public void onDlgRefer(InviteDialog dialog,
                       NameAddress refer_to,
                       NameAddress referred_by,
                       Message msg)
When an incoming REFER request is received within the dialog

onDlgReferResponse

public void onDlgReferResponse(InviteDialog dialog,
                               int code,
                               java.lang.String reason,
                               Message msg)
When a response is received for a REFER request within the dialog

onDlgNotify

public void onDlgNotify(InviteDialog dialog,
                        java.lang.String event,
                        java.lang.String sipfragment,
                        Message msg)
When an incoming NOTIFY request is received within the dialog

onDlgAltRequest

public void onDlgAltRequest(InviteDialog dialog,
                            java.lang.String method,
                            java.lang.String body,
                            Message msg)
When an incoming request is received within the dialog different from INVITE, CANCEL, ACK, BYE, REFER, NOTIFY

onDlgAltResponse

public void onDlgAltResponse(InviteDialog dialog,
                             java.lang.String method,
                             int code,
                             java.lang.String reason,
                             java.lang.String body,
                             Message msg)
When a response is received for a request within the dialog different from INVITE, CANCEL, ACK, BYE, REFER, NOTIFY

MjSip Stack
v1.6