| javax.sip.address.Hop
All known Subclasses: examples.tls.HopImpl,
Hop | public interface Hop (Code) | | The Hop interface defines a location a request can transit on the way to
its destination, i.e. a route. It defines the host, port and transport of
the location. This interface is used to identify locations in the
Router interface.
See Also: Router author: BEA Systems, NIST version: 1.2 |
getHost | public String getHost()(Code) | | Returns the host part of this Hop.
the string value of the host. |
getPort | public int getPort()(Code) | | Returns the port part of this Hop.
the integer value of the port. |
getTransport | public String getTransport()(Code) | | Returns the transport part of this Hop.
the string value of the transport. |
toString | public String toString()(Code) | | This method returns the Hop as a string.
the stringified version of the Hop |
|
|