diff options
| author | Chung-yih Wang <cywang@google.com> | 2011-02-10 15:20:41 +0800 |
|---|---|---|
| committer | Chung-yih Wang <cywang@google.com> | 2011-02-17 15:06:08 +0800 |
| commit | 1c1df003bcf63b473d1ed90bd771963381e1be93 (patch) | |
| tree | 81bb213f265b9089056b4ea0f9ed42e4d07b70db /java | |
| parent | 148a9f1964f3412c22618166e1b426d278bce336 (diff) | |
| download | android_frameworks_opt_net_voip-1c1df003bcf63b473d1ed90bd771963381e1be93.tar.gz android_frameworks_opt_net_voip-1c1df003bcf63b473d1ed90bd771963381e1be93.tar.bz2 android_frameworks_opt_net_voip-1c1df003bcf63b473d1ed90bd771963381e1be93.zip | |
Make SIP AuthName APIs public.
bug:3326867
Change-Id: I766e6e28f6ad3e84de2c9e24850d472ad00271cc
Diffstat (limited to 'java')
| -rw-r--r-- | java/android/net/sip/SipProfile.java | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/java/android/net/sip/SipProfile.java b/java/android/net/sip/SipProfile.java index c7e18df..34d91dd 100644 --- a/java/android/net/sip/SipProfile.java +++ b/java/android/net/sip/SipProfile.java @@ -150,9 +150,8 @@ public class SipProfile implements Parcelable, Serializable, Cloneable { /** * Sets the username used for authentication. * - * @param name auth. name of the profile + * @param name authentication username of the profile * @return this builder object - * @hide // TODO: remove when we make it public */ public Builder setAuthUserName(String name) { mProfile.mAuthUserName = name; @@ -391,10 +390,10 @@ public class SipProfile implements Parcelable, Serializable, Cloneable { /** * Gets the username for authentication. If it is null, then the username - * should be used in authentication instead. + * is used in authentication instead. * - * @return the auth. username - * @hide // TODO: remove when we make it public + * @return the authentication username + * @see #getUserName */ public String getAuthUserName() { return mAuthUserName; |
