NIST-SIP: The Reference Implementation for JAIN-SIP 1.2

Uses of Interface
javax.sip.message.Response

Packages that use Response
gov.nist.javax.sip This is the root of the JAIN implementation of SIP.  
gov.nist.javax.sip.message Class definitions for SIP messages and message factory. 
gov.nist.javax.sip.stack This package implements the main protocol abstractions that are defined by the SIP RFC 3261.  
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 gov.nist.javax.sip
 

Methods in gov.nist.javax.sip with parameters of type Response
 void SipProviderImpl.sendResponse(Response response)
           
 

Uses of Response in gov.nist.javax.sip.message
 

Classes in gov.nist.javax.sip.message that implement Response
 class SIPResponse
          SIP Response structure.
 

Methods in gov.nist.javax.sip.message that return Response
 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.
 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)
          Creates a new Response message of type specified by the statusCode paramater, containing the mandatory headers of the message.
 Response MessageFactoryImpl.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 MessageFactoryImpl.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 MessageFactoryImpl.createResponse(int statusCode, Request request)
          Creates a new Response message of type specified by the statusCode paramater, based on a specific Request message.
 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, 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(String responseString)
          Create a response from a string
 

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

Methods in gov.nist.javax.sip.stack that return Response
 Response SIPDialog.createReliableProvisionalResponse(int statusCode)
           
 Response SIPTransaction.getResponse()
          Get the JAIN interface response
 

Methods in gov.nist.javax.sip.stack with parameters of type Response
 Request SIPDialog.createPrack(Response relResponse)
           
 void SIPDialog.sendReliableProvisionalResponse(Response relResponse)
           
 void SIPServerTransaction.sendResponse(Response response)
           
 

Uses of Response in javax.sip
 

Methods in javax.sip that return Response
 Response ResponseEvent.getResponse()
          Gets the Response message encapsulated in this ResponseEvent.
 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.
 

Methods in javax.sip with parameters of type Response
 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.
 void Dialog.sendReliableProvisionalResponse(Response relResponse)
          Sends a reliable provisional response to the remote party of this dialog.
 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.
 

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, 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.
 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(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)
          Creates a new Response message of type specified by the statusCode paramater, based on a specific Request message.
 Response MessageFactory.createResponse(String response)
          Creates a Response from a String.
 


NIST-SIP: The Reference Implementation for JAIN-SIP 1.2

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