| gov.nist.siplite.stack.SIPStackMessageFactory
All known Subclasses: gov.nist.siplite.NistSipMessageFactoryImpl,
SIPStackMessageFactory | public interface SIPStackMessageFactory (Code) | | An interface for generating new requests and responses. This is implemented
by the application and called by the stack for processing requests
and responses. When a Request comes in off the wire, the stack calls
newSIPServerRequest which is then responsible for processing the request.
When a response comes off the wire, the stack calls newSIPServerResponse
to process the response.
|
newSIPServerRequest | public SIPServerRequestInterface newSIPServerRequest(Request sipRequest, MessageChannel msgChan)(Code) | | Makes a new SIPServerResponse given a Request and a message
channel. This is invoked by the stack on an new incoming request.
Parameters: sipRequest - is the incoming SIP request. Parameters: msgChan - is the message channel on which the incomingsipRequest was received. a new SIP server request object |
newSIPServerResponse | public SIPServerResponseInterface newSIPServerResponse(Response sipResponse, MessageChannel msgChan)(Code) | | Generates a new server response for the stack. This is invoked
by the stack on a new incoming server response.
Parameters: sipResponse - is the incoming response. Parameters: msgChan - is the message channel on which the incoming responseis received. a new SIP server request object |
|
|