Uses of Interface
javax.sip.message.Response

Packages that use Response
examples.ims   
examples.nistgoodies.messagevalve   
gov.nist.javax.sip This is the root of the JAIN implementation of SIP. 
gov.nist.javax.sip.clientauthutils This package contains a set of utilities for client side Authentication Challenge handling. 
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. 
test.tck.msgflow   
test.unit.gov.nist.javax.sip.stack   
 

Uses of Response in examples.ims
 

Methods in examples.ims with parameters of type Response
 void Shootist.processInviteOK(Response ok, ClientTransaction ct)
           
 

Uses of Response in examples.nistgoodies.messagevalve
 

Methods in examples.nistgoodies.messagevalve with parameters of type Response
 boolean SipMessageValve.processResponse(Response response, MessageChannel messageChannel)
           
 

Uses of Response in gov.nist.javax.sip
 

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

Constructors in gov.nist.javax.sip with parameters of type Response
ResponseEventExt(Object source, ClientTransactionExt clientTransaction, Dialog dialog, Response response)
           
 

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

Methods in gov.nist.javax.sip.clientauthutils with parameters of type Response
 void DigestServerAuthenticationHelper.generateChallenge(HeaderFactory headerFactory, Response response, String realm)
           
 ClientTransaction AuthenticationHelperImpl.handleChallenge(Response challenge, ClientTransaction challengedTransaction, SipProvider transactionCreator, int cacheTime)
           
 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.
 

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

Subinterfaces of Response in gov.nist.javax.sip.message
 interface ResponseExt
          Extension for the jain-sip Response interface.
 

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)
          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.
 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, 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, 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(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)
           
 boolean SIPMessageValve.processResponse(Response response, MessageChannel messageChannel)
          The callback method that is called for every response before any transaction/dialog mapping or allocation occur.
 boolean CongestionControlMessageValve.processResponse(Response response, MessageChannel messageChannel)
           
protected  void SIPServerTransaction.sendReliableProvisionalResponse(Response relResponse)
           
 void SIPDialog.sendReliableProvisionalResponse(Response relResponse)
           
 void SIPServerTransaction.sendResponse(Response response)
           
 void SIPDialog.startRetransmitTimer(SIPServerTransaction sipServerTx, Response response)
          Start the retransmit timer.
 

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

Uses of Response in test.tck.msgflow
 

Methods in test.tck.msgflow with parameters of type Response
protected  void MessageFlowHarness.addStatus(Request request, Response response)
           
 

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

Methods in test.unit.gov.nist.javax.sip.stack with parameters of type Response
 boolean SIPMessageValveImpl.processResponse(Response response, MessageChannel messageChannel)
           
 



Copyright © 2012. All Rights Reserved.