Exemple #1
0
 /** Creates a new SipURL */
 public SipURL(String hostname, int portnumber) {
   init(null, hostname, portnumber);
 }
Exemple #2
0
 /** Creates a new SipURL */
 public SipURL(String username, String hostname, int portnumber) {
   init(username, hostname, portnumber);
 }
Exemple #3
0
 /** Creates a new SipURL */
 public SipURL(String username, String hostname) {
   init(username, hostname, -1);
 }