You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
563 B
17 lines
563 B
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;
|
|
}
|
|
|