blob: 247781f8a21e7262dcbf976688a0dcb5b65c82e3 [file] [log] [blame]
package javax.sip.address;
import java.text.ParseException;
import javax.sip.header.Parameters;
public interface TelURL extends URI, Parameters {
String getIsdnSubAddress();
void setIsdnSubAddress(String isdnSubAddress) throws ParseException;
String getPhoneContext();
void setPhoneContext(String phoneContext) throws ParseException;
String getPhoneNumber();
void setPhoneNumber(String phoneNumber) throws ParseException;
String getPostDial();
void setPostDial(String postDial) throws ParseException;
boolean isGlobal();
void setGlobal(boolean global);
}