| gov.nist.siplite.stack.SIPServerResponseInterface
All known Subclasses: gov.nist.siplite.NistSipMessageHandlerImpl, gov.nist.siplite.stack.ClientTransaction,
SIPServerResponseInterface | public interface SIPServerResponseInterface (Code) | | An interface for a genereic message processor for SIP Response 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 processResponse on the newly created SIPServerResponse
It is the applications responsibility to take care of what needs to be
done to actually process the response.
version: JAIN-SIP-1.1 version: This code is in the public domain. |
getProcessingInfo | public String getProcessingInfo()(Code) | | Gets the auxiliary information that is generated while logging
for the purpose of writing out the log file.
the processing infromation |
getRequestChannel | public MessageChannel getRequestChannel()(Code) | | Gets the Channel for the sender.
the MessageChannel through which you can send anew request to the responder. |
processResponse | public void processResponse(Response sipResponse, MessageChannel incomingChannel) throws SIPServerException(Code) | | Processes the Response.
Parameters: sipResponse - is the responseto process. Parameters: incomingChannel - is the incoming message channel (parameteradded in response to a request by Salvador Rey Calatayud.) throws: SIPServerException - Exception that gets thrown bythis processor when an exception is encountered in themessage processing. |
|
|