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

17 lines
563 B
Java
Raw Normal View History

2025-01-20 15:15:20 +00:00
package javax.sip.address;
import java.text.ParseException;
public interface AddressFactory {
Address createAddress();
Address createAddress(String address) throws ParseException;
Address createAddress(URI uri);
Address createAddress(String displayName, URI uri)
throws ParseException;
SipURI createSipURI(String uri) throws ParseException;
SipURI createSipURI(String user, String host) throws ParseException;
TelURL createTelURL(String uri) throws ParseException;
URI createURI(String uri) throws ParseException;
}