• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package javax.sip.address;
2 
3 import java.text.ParseException;
4 
5 public interface AddressFactory {
createAddress()6     Address createAddress();
createAddress(String address)7     Address createAddress(String address) throws ParseException;
createAddress(URI uri)8     Address createAddress(URI uri);
createAddress(String displayName, URI uri)9     Address createAddress(String displayName, URI uri)
10             throws ParseException;
createSipURI(String uri)11     SipURI createSipURI(String uri) throws ParseException;
createSipURI(String user, String host)12     SipURI createSipURI(String user, String host) throws ParseException;
createTelURL(String uri)13     TelURL createTelURL(String uri) throws ParseException;
createURI(String uri)14     URI createURI(String uri) throws ParseException;
15 }
16 
17