JAIN-SIP 2.0 API

Uses of Interface
javax.sip.header.ToHeader

Packages that use ToHeader
javax.sip.header

This package contains all the headers interfaces supported by this specification. 

javax.sip.message This package contains the interfaces representing SIP messages. 
 

Uses of ToHeader in javax.sip.header
 

Methods in javax.sip.header that return ToHeader
 ToHeader HeaderFactory.createToHeader(Address address, String tag)
          Creates a new ToHeader based on the newly supplied address and tag values.
 

Uses of ToHeader in javax.sip.message
 

Methods in javax.sip.message that return ToHeader
 ToHeader Message.getTo()
          Get the To header or null if none present.
 

Methods in javax.sip.message with parameters of type ToHeader
 Request MessageFactory.createRequest(URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards)
          Creates a new Request message of type specified by the method paramater, containing the URI of the Request, the mandatory headers of the message.
 Request MessageFactory.createRequest(URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, byte[] content)
          Creates a new Request message of type specified by the method paramater, containing the URI of the Request, the mandatory headers of the message with a body in the form of a byte array and body content type.
 Request MessageFactory.createRequest(URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, Object content)
          Creates a new Request message of type specified by the method paramater, containing the URI of the Request, 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)
          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)
 


JAIN-SIP 2.0 API


See conditions of use.
Submit a bug report or feature request.