Deprecated Methods |
gov.nist.javax.sip.SipStackImpl.addLogAppender(Appender)
TODO: remove this method May 11, 2010. |
javax.sip.ClientTransaction.createAck()
Since v1.2. As a transaction that received
a 2xx response terminates immediately, it cannot be used for creating
the corresponding ACK. If this transaction created a dialog, the
Dialog.createAck(long) method
should be used. Otherwise the stack will automatically create and
send the ACK for non-2xx responses that need to be acknowledged.
That is the application should never need to use this method. |
gov.nist.javax.sip.header.HeaderFactoryImpl.createCSeqHeader(int, String)
|
javax.sip.header.HeaderFactory.createCSeqHeader(int, String)
Since 1.2. Use HeaderFactory.createCSeqHeader(long, String) method
with type long. |
gov.nist.javax.sip.SipStackImpl.createListeningPoint(int, String)
|
javax.sip.SipStack.createListeningPoint(int, String)
Since v1.2. This has been replaced by
SipStack.createListeningPoint(String, int, String)
For backwards compatibility with v1.1 implementations should support this method.
Implementations should throw TransportNotSupportedException
if the Properties specified during stack creation do not include an IP Address. |
gov.nist.javax.sip.header.HeaderFactoryImpl.createRAckHeader(int, int, String)
|
gov.nist.javax.sip.header.HeaderFactoryImpl.createRSeqHeader(int)
|
gov.nist.javax.sip.header.Via.getComment()
RFC 2543 support feature. |
gov.nist.javax.sip.header.RAck.getCSeqNumber()
|
javax.sip.header.TimeStampHeader.getDelay()
This method is replaced with TimeStampHeader.getTimeDelay() . |
gov.nist.javax.sip.stack.SIPDialog.getFirstTransaction()
|
javax.sip.Dialog.getFirstTransaction()
Since v1.2. Reduces the amount of state that
the stack needs to keep track of. |
gov.nist.javax.sip.stack.SIPTransactionStack.getHostAddress()
|
gov.nist.javax.sip.SipStackImpl.getIPAddress()
|
javax.sip.SipProvider.getListeningPoint()
Since v1.2. Note that in v1.1 a SipProvider could only be
associated to a single listening point, this restriction has been lifted to allow
a SipProvider to have a specific ListeningPoints for each transport.
For backwards compatibility, this method will return the first
ListeningPoint of the list of ListeningPoints associated with the
SipProvider. This method has been replaced with
SipProvider.getListeningPoints() . |
gov.nist.javax.sip.stack.SIPDialog.getLocalSequenceNumber()
|
javax.sip.Dialog.getLocalSequenceNumber()
This method is replaced with Dialog.getLocalSeqNumber() with
type long. |
gov.nist.javax.sip.SipStackImpl.getLogger()
TODO: This method will be removed May 11, 2010. |
javax.sip.address.Router.getNextHops(Request)
Since v1.2. This method is replaced with
Router.getNextHop(Request) method which returns the next
Hop for this request. |
gov.nist.javax.sip.stack.SIPDialog.getRemoteSequenceNumber()
|
javax.sip.Dialog.getRemoteSequenceNumber()
This method is replaced with Dialog.getRemoteSeqNumber() with
type long. |
gov.nist.javax.sip.header.RAck.getRSeqNumber()
|
gov.nist.javax.sip.header.RSeq.getSequenceNumber()
|
javax.sip.header.CSeqHeader.getSequenceNumber()
This method is replaced with CSeqHeader.getSeqNumber() with
type long. |
gov.nist.javax.sip.stack.SIPTransactionStack.getStackLogger()
|
javax.sip.header.TimeStampHeader.getTimeStamp()
This method is replaced with TimeStampHeader.getTime() . |
javax.sip.header.WWWAuthenticateHeader.getURI()
Since v1.2. URI is not a supported parameter for this
header. This method should return null. |
gov.nist.javax.sip.stack.SIPTransactionStack.isLoggingEnabled()
|
gov.nist.javax.sip.stack.SIPTransactionStack.isLoggingEnabled(int)
|
gov.nist.javax.sip.SipStackImpl.isRetransmissionFilterActive()
|
javax.sip.SipStack.isRetransmissionFilterActive()
Since v1.2. This retransmission filter property has been deprecated
as a SIP Stack property. Applications can enable retransmission alerts by using the
ServerTransaction.enableRetransmissionAlerts() method. |
gov.nist.javax.sip.header.Via.setComment(String)
This is an RFC 2543 feature. |
gov.nist.javax.sip.header.RAck.setCSeqNumber(int)
|
javax.sip.header.TimeStampHeader.setDelay(float)
This method is replaced with TimeStampHeader.setTimeDelay(int) . |
javax.sip.SipProvider.setListeningPoint(ListeningPoint)
Since v1.2. Note that in v1.1 a SipProvider could only
be associated to a single listening point, this restriction has been lifted
to allow a SipProvider to have a specific ListeningPoints for each transport.
For backwards compatibility, this method will add the ListeningPoint to
the list of ListeningPoints associated with the SipProvider. This method
has been replaced with SipProvider.addListeningPoint(ListeningPoint) ,
the same semantics apply to this method. |
gov.nist.javax.sip.header.RAck.setRSeqNumber(int)
|
gov.nist.javax.sip.header.RSeq.setSequenceNumber(int)
|
javax.sip.header.CSeqHeader.setSequenceNumber(int)
This method is replaced with CSeqHeader.setSeqNumber(long) with
type long. |
javax.sip.header.TimeStampHeader.setTimeStamp(float)
This method is replaced with TimeStampHeader.setTimeStamp(float) . |
javax.sip.header.WWWAuthenticateHeader.setURI(URI)
Since v1.2. URI is not a supported parameter for this header. |