• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package javax.sip.address;
2 
3 public interface Hop {
getHost()4     String getHost();
getPort()5     int getPort();
getTransport()6     String getTransport();
7 
isURIRoute()8     boolean isURIRoute();
setURIRouteFlag()9     void setURIRouteFlag();
10 
toString()11     String toString();
12 }
13 
14