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