コード例 #1
0
ファイル: SipURL.java プロジェクト: jptien/ims-v1
 /** Creates a new SipURL */
 public SipURL(String hostname, int portnumber) {
   init(null, hostname, portnumber);
 }
コード例 #2
0
ファイル: SipURL.java プロジェクト: jptien/ims-v1
 /** Creates a new SipURL */
 public SipURL(String username, String hostname, int portnumber) {
   init(username, hostname, portnumber);
 }
コード例 #3
0
ファイル: SipURL.java プロジェクト: jptien/ims-v1
 /** Creates a new SipURL */
 public SipURL(String username, String hostname) {
   init(username, hostname, -1);
 }