|
||||||||||
| 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. |
void |
Dialog.sendReliableProvisionalResponse(Response relResponse)
Sends a reliable provisional response to the remote party of this dialog. |
void |
ServerTransaction.sendResponse(Response response)
Sends the Response to a Request which is associated with this ServerTransaction. |
void |
SipProvider.sendResponse(Response response)
Sends the Response statelessly, that is no transaction record is associated with this action. |
| Constructors in javax.sip with parameters of type Response | |
|---|---|
ResponseEvent(Object source,
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,
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. |
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. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||