gov.nist.javax.sip.stack
インタフェース ServerRequestInterface

既知の実装クラスの一覧:
NistSipMessageHandlerImpl, SIPServerTransaction

public interface ServerRequestInterface

An interface for a genereic message processor for SIP Request messages. This is implemented by the application. The stack calls the message factory with a pointer to the parsed structure to create one of these and then calls processRequest on the newly created SIPServerRequest It is the applications responsibility to take care of what needs to be done to actually process the request.

バージョン:
JAIN-SIP-1.1 $Revision: 1.1 $ $Date: 2004/06/21 05:42:32 $
作成者:
M. Ranganathan
This code is in the public domain.

メソッドの概要
 java.lang.String getProcessingInfo()
          Get processing information.
 void processRequest(SIPRequest sipRequest, MessageChannel msgChannel)
          Process the message.
 

メソッドの詳細

processRequest

void processRequest(SIPRequest sipRequest,
                    MessageChannel msgChannel)
Process the message. This incorporates a feature request by Salvador Rey Calatayud

パラメータ:
sipRequest - is the incoming SIP Request.
incomingChannel - is the incoming message channel (parameter added in response to a request by Salvador Rey Calatayud.)

getProcessingInfo

java.lang.String getProcessingInfo()
Get processing information. The stack queries processing information to add to the message log. by calling this interface. Return null if no processing information of interes thas been generated.