Home | History | Annotate | Download | only in address
      1 package javax.sip.address;
      2 
      3 import java.text.ParseException;
      4 import javax.sip.header.Parameters;
      5 
      6 public interface TelURL extends URI, Parameters {
      7     String getIsdnSubAddress();
      8     void setIsdnSubAddress(String isdnSubAddress) throws ParseException;
      9 
     10     String getPhoneContext();
     11     void setPhoneContext(String phoneContext) throws ParseException;
     12 
     13     String getPhoneNumber();
     14     void setPhoneNumber(String phoneNumber) throws ParseException;
     15 
     16     String getPostDial();
     17     void setPostDial(String postDial) throws ParseException;
     18 
     19     boolean isGlobal();
     20     void setGlobal(boolean global);
     21 }
     22