diff options
author | Nancy Chen <nancychen@google.com> | 2015-04-07 12:21:36 -0700 |
---|---|---|
committer | Nancy Chen <nancychen@google.com> | 2015-04-07 12:21:36 -0700 |
commit | 1df9429b6b76710f8dd6458517d04feb7a63826e (patch) | |
tree | 0b12a3dd39c3a1b8e1e21f4b49ae1d20338abc7c /telecomm | |
parent | b677e0a49643d265eb0fa5efc3666a1e9362477f (diff) | |
download | frameworks_base-1df9429b6b76710f8dd6458517d04feb7a63826e.zip frameworks_base-1df9429b6b76710f8dd6458517d04feb7a63826e.tar.gz frameworks_base-1df9429b6b76710f8dd6458517d04feb7a63826e.tar.bz2 |
Hide and make systemapi visual voicemail-related apis.
Since there are no third-party apps expected to be using the visual
voicemail related apps at the moment, best to keep these hidden for now.
Bug: 19236241
Change-Id: I86f622208efcc89fab523f03d2bb70c244cdf867
Diffstat (limited to 'telecomm')
-rw-r--r-- | telecomm/java/android/telecom/AuthenticatorService.java | 4 | ||||
-rw-r--r-- | telecomm/java/android/telecom/Voicemail.java | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/telecomm/java/android/telecom/AuthenticatorService.java b/telecomm/java/android/telecom/AuthenticatorService.java index 39717c3..7aa105d 100644 --- a/telecomm/java/android/telecom/AuthenticatorService.java +++ b/telecomm/java/android/telecom/AuthenticatorService.java @@ -19,6 +19,7 @@ import android.accounts.AbstractAccountAuthenticator; import android.accounts.Account; import android.accounts.AccountAuthenticatorResponse; import android.accounts.NetworkErrorException; +import android.annotation.SystemApi; import android.app.Service; import android.content.Context; import android.content.Intent; @@ -28,7 +29,10 @@ import android.os.IBinder; /** * A generic stub account authenticator service often used for sync adapters that do not directly * involve accounts. + * + * @hide */ +@SystemApi public class AuthenticatorService extends Service { private static Authenticator mAuthenticator; diff --git a/telecomm/java/android/telecom/Voicemail.java b/telecomm/java/android/telecom/Voicemail.java index a884c5f..186c199 100644 --- a/telecomm/java/android/telecom/Voicemail.java +++ b/telecomm/java/android/telecom/Voicemail.java @@ -16,13 +16,17 @@ package android.telecom; +import android.annotation.SystemApi; import android.net.Uri; import android.os.Parcel; import android.os.Parcelable; /** * Represents a single voicemail stored in the voicemail content provider. + * + * @hide */ +@SystemApi public class Voicemail implements Parcelable { private final Long mTimestamp; private final String mNumber; |