Back to project page AndroidSIP.
The source code is released under:
Apache License
If you think the Android project AndroidSIP listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.gongmingqm10.sipsample.data; //from w w w. ja v a2s. c o m import java.io.Serializable; public class Account implements Serializable { private String username; private String password; private String domain; public Account(String username, String password, String domain) { this.username = username; this.password = password; this.domain = domain; } public Account(String username, String password) { this(username, password, ""); } public String getUsername() { return username; } public String getPassword() { return password; } public String getDomain() { return domain; } }