Package | Description |
---|---|
android.gov.nist.javax.sip.header |
Contains implementations of the SIP headers as defined in JAIN-SIP 1.2 and
an implementation of the JAIN-SIP header factory.
|
android.gov.nist.javax.sip.message |
Class definitions for SIP messages and message factory.
|
android.gov.nist.javax.sip.stack |
This package implements the main protocol abstractions that are defined by the SIP RFC 3261.
|
android.javax.sip.header |
This package contains all the headers interfaces supported by this specification. |
android.javax.sip.message |
This package contains the interfaces representing SIP messages.
|
Modifier and Type | Method and Description |
---|---|
CSeqHeader |
HeaderFactoryImpl.createCSeqHeader(int sequenceNumber,
String method)
Deprecated.
|
CSeqHeader |
HeaderFactoryImpl.createCSeqHeader(long sequenceNumber,
String method)
Creates a new CSeqHeader based on the newly supplied sequence number and
method values.
|
Modifier and Type | Method and Description |
---|---|
CSeqHeader |
SIPMessage.getCSeq()
Get the CSeq list of header (null if one does not exist).
|
CSeqHeader |
MessageExt.getCSeqHeader()
Get the CSeq header or null if none present.
|
CSeqHeader |
SIPMessage.getCSeqHeader() |
Modifier and Type | Method and Description |
---|---|
Request |
MessageFactoryImpl.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.
|
Request |
MessageFactoryImpl.createRequest(URI requestURI,
String method,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards,
byte[] content,
ContentTypeHeader contentType)
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 |
MessageFactoryImpl.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 |
MessageFactoryImpl.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.
|
Response |
MessageFactoryImpl.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.
|
Response |
MessageFactoryImpl.createResponse(int statusCode,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards,
byte[] content,
ContentTypeHeader contentType)
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 |
MessageFactoryImpl.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 |
MessageFactoryImpl.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 |
MessageFactoryImpl.createResponse(int statusCode,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards,
Object content,
ContentTypeHeader contentType)
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.
|
void |
SIPMessage.setCSeq(CSeqHeader cseqHeader)
Set the CSeq header.
|
Modifier and Type | Method and Description |
---|---|
CSeqHeader |
SIPDialog.getLastAckSentCSeq() |
Modifier and Type | Method and Description |
---|---|
CSeqHeader |
HeaderFactory.createCSeqHeader(int sequenceNumber,
String method)
Deprecated.
Since 1.2. Use
HeaderFactory.createCSeqHeader(long, String) method
with type long. |
CSeqHeader |
HeaderFactory.createCSeqHeader(long sequenceNumber,
String method)
Creates a new CSeqHeader based on the newly supplied sequence number and
method values.
|
Modifier and Type | Method and Description |
---|---|
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.
|
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,
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.
|
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.
|
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,
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.
|
Copyright © 2018. All Rights Reserved.