NIST SIP Parser and Stack (v1.2) API

Uses of Interface
javax.sip.header.CallIdHeader

Packages that use CallIdHeader
gov.nist.javax.sip This is the root of the JAIN implementation of SIP.  
gov.nist.javax.sip.header Contains implementations of the SIP headers as defined in JAIN-SIP 1.1 and an implementation of the JAIN-SIP header factory. 
gov.nist.javax.sip.stack This package contains the classes for building a SIP stack.  
javax.sip This package contains the main interfaces that model the JAIN SIP architectute from both an application developer and a stack vendor view. 
javax.sip.header This package contains all the headers interfaces supported by this specification.  
javax.sip.message   
 

Uses of CallIdHeader in gov.nist.javax.sip
 

Methods in gov.nist.javax.sip that return CallIdHeader
 CallIdHeader SipProviderImpl.getNewCallId()
          Returns a unique CallIdHeader for identifying dialogues between two SIP applications.
 

Uses of CallIdHeader in gov.nist.javax.sip.header
 

Classes in gov.nist.javax.sip.header that implement CallIdHeader
 class CallID
          Call ID SIPHeader.
 

Methods in gov.nist.javax.sip.header that return CallIdHeader
 CallIdHeader HeaderFactoryImpl.createCallIdHeader(String callId)
          Creates a new CallIdHeader based on the newly supplied callId value.
 

Uses of CallIdHeader in gov.nist.javax.sip.stack
 

Methods in gov.nist.javax.sip.stack that return CallIdHeader
 CallIdHeader DialogImpl.getCallId()
          Returns the Call-ID for this SipSession.
 

Uses of CallIdHeader in javax.sip
 

Methods in javax.sip that return CallIdHeader
 CallIdHeader SipProvider.getNewCallId()
          Returns a unique CallIdHeader for identifying dialogues between two SIP applications.
 CallIdHeader Dialog.getCallId()
          Returns the Call-Id for this SipSession.
 

Uses of CallIdHeader in javax.sip.header
 

Methods in javax.sip.header that return CallIdHeader
 CallIdHeader HeaderFactory.createCallIdHeader(String callId)
          Creates a new CallIdHeader based on the newly supplied callId value.
 

Uses of CallIdHeader in javax.sip.message
 

Methods in javax.sip.message with parameters of type CallIdHeader
 Request MessageFactory.createRequest(URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, Object content)
          Creates a new Request message of type specified by the method paramater, containing the URI of the Request, the mandatory headers of the message with a body in the form of a Java object and the body content type.
 Request MessageFactory.createRequest(URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, byte[] content)
          Creates a new Request message of type specified by the method paramater, containing the URI of the Request, the mandatory headers of the message with a body in the form of a byte array and body content type.
 Request MessageFactory.createRequest(URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards)
          Creates a new Request message of type specified by the method paramater, containing the URI of the Request, the mandatory headers of the message.
 Response MessageFactory.createResponse(int statusCode, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, Object content)
          Creates a new Response message of type specified by the statusCode paramater, containing the mandatory headers of the message with a body in the form of a Java object and the body content type.
 Response MessageFactory.createResponse(int statusCode, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, byte[] content)
          Creates a new Response message of type specified by the statusCode paramater, containing the mandatory headers of the message with a body in the form of a byte array and the body content type.
 Response MessageFactory.createResponse(int statusCode, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards)
          Creates a new Response message of type specified by the statusCode paramater, containing the mandatory headers of the message.
 


NIST SIP Parser and Stack (v1.2) API

A product of the NIST/ITL Advanced Networking Technologies Division.
See conditions of use.
Get the latest distribution.
Submit a bug report or feature request.