Back to project page restcomm-android-sdk.
The source code is released under:
GNU General Public License
If you think the Android project restcomm-android-sdk 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 org.mobicents.restcomm.android.sdk.impl; /*from ww w .j ava2 s . c om*/ import android.gov.nist.javax.sip.clientauthutils.UserCredentials; public class UserCredentialsImpl implements UserCredentials { private String userName; private String sipDomain; private String password; public UserCredentialsImpl(String userName, String sipDomain, String password) { this.userName = userName; this.sipDomain = sipDomain; this.password = password; } public String getPassword() { return password; } public String getSipDomain() { return sipDomain; } public String getUserName() { return userName; } }