| java.lang.Object gov.nist.siplite.NistSipMessageFactoryImpl
NistSipMessageFactoryImpl | public class NistSipMessageFactoryImpl implements SIPStackMessageFactory(Code) | | Implements all the support classes that are necessary for the nist-sip
stack on which the jain-sip stack has been based.
This is a mapping class to map from the NIST-SIP abstractions to
the JAIN abstractions. (i.e. It is the glue code that ties
the NIST-SIP event model and the JAIN-SIP event model together.
When a SIP Request or SIP Response is read from the corresponding
messageChannel, the NIST-SIP stack calls the SIPStackMessageFactory
implementation that has been registered with it to process the request.)
version: JAIN-SIP-1.1 version: This code is in the public domain. |
NistSipMessageFactoryImpl | public NistSipMessageFactoryImpl(SipStack sipStackImpl)(Code) | | Contrictor.
Parameters: sipStackImpl - current SIP stack context |
newSIPServerRequest | public SIPServerRequestInterface newSIPServerRequest(Request sipRequest, MessageChannel messageChannel) throws IllegalArgumentException(Code) | | Constructs a new SIP Server Request.
Parameters: sipRequest - is the Request from which the SIPServerRequestis to be constructed. Parameters: messageChannel - is the MessageChannel abstraction for thisSIPServerRequest. a new SIP Server Request handle |
newSIPServerResponse | public SIPServerResponseInterface newSIPServerResponse(Response sipResponse, MessageChannel messageChannel)(Code) | | Generates a new server response for the stack.
Parameters: sipResponse - is the Request from which the SIPServerRequestis to be constructed. Parameters: messageChannel - is the MessageChannel abstraction for thisSIPServerResponse a new SIP Server Response handle |
|
|