blob: fcb0e905db6162dd2baffa7f8a9b488dc9e7e783 [file] [log] [blame]
package javax.sip.address;
public interface Hop {
String getHost();
int getPort();
String getTransport();
boolean isURIRoute();
void setURIRouteFlag();
String toString();
}