NIST SIP Parser and Stack (v1.2) API

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.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.message   
 

Uses of Response in gov.nist.javax.sip
 

Methods in gov.nist.javax.sip with parameters of type Response
 void SipProviderImpl.sendResponse(ServerTransaction serverTransaction, Response response)
          Sends specified Response message to a Request which is identified by the specified server transaction identifier.
 void SipProviderImpl.sendStatelessResponse(Response response)
          Sends specified Response and returns void i.e.
 

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

Methods in gov.nist.javax.sip.stack that return Response
 Response SIPTransaction.getResponse()
          Get the JAIN interface 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.
 

Methods in javax.sip with parameters of type Response
 void SipProvider.sendResponse(ServerTransaction serverTransaction, Response response)
          Sends the Response to a Request which is identified by the ServerTransaction.
 void SipProvider.sendStatelessResponse(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, 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.
 


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.