예제 #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);
 }