Home | History | Annotate | Download | only in address
      1 package javax.sip.address;
      2 
      3 public interface Hop {
      4     String getHost();
      5     int getPort();
      6     String getTransport();
      7 
      8     boolean isURIRoute();
      9     void setURIRouteFlag();
     10 
     11     String toString();
     12 }
     13 
     14