com.cisco.jtapi.extensions
Class CiscoRTPParams

java.lang.Object
  extended by com.cisco.jtapi.extensions.CiscoRTPParams

public class CiscoRTPParams
extends java.lang.Object

Introduction

You can use the CiscoRTPParams class to specify a dynamic RTP address and port number for a media terminal on a per-call basis. Applications can pass this object in setRTPParams() of CiscoMediaTerminal. These parameters are only valid for a particular call.

See Also:
CiscoTerminal, CiscoMediaTerminal

Constructor Summary
CiscoRTPParams(java.net.InetAddress rtpAddress, int rtpPort)
           
 
Method Summary
 java.net.InetAddress getRTPAddress()
          Returns the Internet address for the inbound RTP stream of the associated call.
 java.lang.String getRTPAddressHostName()
          Returns the IP host name for the inbound RTP stream of the associated call.
 byte[] getRTPByteAddress()
          Returns the Internet address in byte format for the inbound RTP stream.
 int getRTPPort()
          Returns the UDP port for the inbound RTP stream.
 java.lang.String toString()
          Returns a String in the format "IP address/port number."
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CiscoRTPParams

public CiscoRTPParams(java.net.InetAddress rtpAddress,
                      int rtpPort)
Method Detail

getRTPAddress

public java.net.InetAddress getRTPAddress()
Returns the Internet address for the inbound RTP stream of the associated call.


getRTPAddressHostName

public java.lang.String getRTPAddressHostName()
Returns the IP host name for the inbound RTP stream of the associated call.


getRTPByteAddress

public byte[] getRTPByteAddress()
Returns the Internet address in byte format for the inbound RTP stream.


getRTPPort

public int getRTPPort()
Returns the UDP port for the inbound RTP stream.


toString

public java.lang.String toString()
Returns a String in the format "IP address/port number."

Overrides:
toString in class java.lang.Object