Back to project page SipgateInfo.
The source code is released under:
GNU General Public License
If you think the Android project SipgateInfo 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.skweez.sipgate.api; //from ww w . ja va 2 s . c om import android.net.Uri; /** * This is basically a phone number and the according sip://###@sipgate.de URI. * * @author Florian Mutter * @author Michael Kanis */ public class UserUri { private final String e164Out; private final Uri sipUri; private final boolean defaultUri; public UserUri(String e164Out, Uri sipUri, Boolean defaultUri) { this.e164Out = e164Out; this.sipUri = sipUri; this.defaultUri = defaultUri; } public String getOutgoingNumber() { return e164Out; } public Uri getSipUri() { return sipUri; } public boolean isDefaultUri() { return defaultUri; } }