Jitsi: the OpenSource Java VoIP and Instant Messaging client.

net.java.sip.communicator.impl.protocol.sip
Interface MethodProcessorListener

All Known Implementing Classes:
OperationSetDesktopSharingServerSipImpl, OperationSetTelephonyConferencingSipImpl

public interface MethodProcessorListener

Represents a listener which gets notified by the CallPeer it is registered with about the processing of SIP signaling that the CallPeer performs.

Author:
Lubomir Marinov

Method Summary
 void requestProcessed(CallPeerSipImpl sourceCallPeer, javax.sip.message.Request request, javax.sip.message.Response response)
          Notifies this MethodProcessorListener that a specific CallPeer has processed a specific SIP Request and has replied to it with a specific SIP Response.
 void responseProcessed(CallPeerSipImpl sourceCallPeer, javax.sip.message.Response response, javax.sip.message.Request request)
          Notifies this MethodProcessorListener that a specific CallPeer has processed a specific SIP Response and has replied to it with a specific SIP Request.
 

Method Detail

requestProcessed

void requestProcessed(CallPeerSipImpl sourceCallPeer,
                      javax.sip.message.Request request,
                      javax.sip.message.Response response)
Notifies this MethodProcessorListener that a specific CallPeer has processed a specific SIP Request and has replied to it with a specific SIP Response.

Parameters:
sourceCallPeer - the CallPeer which has processed the specified SIP Request
request - the SIP Request which has been processed by sourceCallPeer
response - the SIP Response sent by sourceCallPeer as a reply to the specified SIP request

responseProcessed

void responseProcessed(CallPeerSipImpl sourceCallPeer,
                       javax.sip.message.Response response,
                       javax.sip.message.Request request)
Notifies this MethodProcessorListener that a specific CallPeer has processed a specific SIP Response and has replied to it with a specific SIP Request.

Parameters:
sourceCallPeer - the CallPeer which has processed the specified SIP Response
response - the SIP Response which has been processed by sourceCallPeer
request - the SIP Request sent by sourceCallPeer as a reply to the specified SIP response

Jitsi: the OpenSource Java VoIP and Instant Messaging client.

Jitsi, the OpenSource Java VoIP and Instant Messaging client.
Distributable under LGPL license.