1 package javax.sip.address; 2 3 import java.io.Serializable; 4 5 public interface URI extends Cloneable, Serializable { 6 String getScheme(); 7 boolean isSipURI(); 8 9 Object clone(); 10 String toString(); 11 } 12 13