|
JAIN-SIP 2.0 API | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Response | |
---|---|
javax.sip | This package contains the main interfaces that model the architecture from both an application developer and a stack vendor view. |
javax.sip.message | This package contains the interfaces representing SIP messages. |
Uses of Response in javax.sip |
---|
Methods in javax.sip that return Response | |
---|---|
Response |
Dialog.createReliableProvisionalResponse(int statusCode)
Creates a new reliable provisional response based on an Invite request that created this Dialog or that is now refreshing this Dialog. |
Response |
ResponseEvent.getResponse()
Gets the Response message encapsulated in this ResponseEvent. |
Methods in javax.sip with parameters of type Response | |
---|---|
Request |
Dialog.createPrack(Response relResponse)
Creates a new PRACK Request message based on a reliable provisional response received by this Dialog and the Dialog internal information. |
ClientTransaction |
AuthenticationHelper.handleChallenge(Response challenge,
ClientTransaction challengedTransaction,
SipProvider transactionCreator,
int cacheTime)
Uses securityAuthority to determinie a set of valid user credentials for the specified Response (Challenge) and appends it to the challenged request so that it could be retransmitted. |
void |
Dialog.sendReliableProvisionalResponse(Response relResponse)
Sends a reliable provisional response to the remote party of this dialog. |
void |
SipProvider.sendResponse(Response response)
Sends the Response statelessly, that is no transaction record is associated with this action. |
void |
ServerTransaction.sendResponse(Response response)
Sends the Response to a Request which is associated with this ServerTransaction. |
Constructors in javax.sip with parameters of type Response | |
---|---|
ResponseEvent(Object source,
ListeningPoint listeningPoint,
ClientTransaction clientTransaction,
Dialog dialog,
Response response)
Constructs a ResponseEvent encapsulating the Response that has been received by the underlying SipProvider. |
Uses of Response in javax.sip.message |
---|
Methods in javax.sip.message that return Response | |
---|---|
Response |
MessageFactory.createResponse(int statusCode,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via)
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,
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,
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)
Deprecated. since version 2.0 as MaxForwards header is not relevant for the response. Please use MessageFactory.createResponse(int,
CallIdHeader, CSeqHeader, FromHeader, ToHeader, List) |
Response |
MessageFactory.createResponse(int statusCode,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards,
ContentTypeHeader contentType,
byte[] content)
Deprecated. This method is not supported since version 2.0 because MaxForwards header is not relevant for the response. Please use MessageFactory.createResponse(int, CallIdHeader,
CSeqHeader, FromHeader, ToHeader, List, ContentTypeHeader, byte[]) |
Response |
MessageFactory.createResponse(int statusCode,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards,
ContentTypeHeader contentType,
Object content)
Deprecated. This method is deprecated since version 2.0. MaxForwards header is not required for the response. Please use MessageFactory.createResponse(int, CallIdHeader, CSeqHeader, FromHeader,
ToHeader, List, ContentTypeHeader, Object) |
Response |
MessageFactory.createResponse(int statusCode,
Request request)
Creates a new Response message of type specified by the statusCode paramater, based on a specific Request message. |
Response |
MessageFactory.createResponse(int statusCode,
Request request,
ContentTypeHeader contentType,
byte[] content)
Creates a new Response message of type specified by the statusCode paramater, based on a specific Request with a new body in the form of a byte array and the body content type. |
Response |
MessageFactory.createResponse(int statusCode,
Request request,
ContentTypeHeader contentType,
Object content)
Creates a new Response message of type specified by the statusCode paramater, based on a specific Request with a new body in the form of a Java object and the body content type. |
Response |
MessageFactory.createResponse(String response)
Creates a Response from a String. |
|
JAIN-SIP 2.0 API | |||||||||
PREV NEXT | FRAMES NO FRAMES |