script-astra/Android/Sdk/sources/android-35/javax/sip/address/TelURL.java

22 lines
601 B
Java
Raw Normal View History

2025-01-20 15:15:20 +00:00
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);
}