diff options
-rw-r--r-- | core/java/android/accounts/IAccountManager.aidl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/java/android/accounts/IAccountManager.aidl b/core/java/android/accounts/IAccountManager.aidl index ce68e082cf4f..fb9ef53f41f6 100644 --- a/core/java/android/accounts/IAccountManager.aidl +++ b/core/java/android/accounts/IAccountManager.aidl @@ -105,12 +105,15 @@ interface IAccountManager { String statusToken); /* Returns Map<String, Integer> from package name to visibility with all values stored for given account */ + @SuppressWarnings(value = {"untyped-collection"}) Map getPackagesAndVisibilityForAccount(in Account account); + @SuppressWarnings(value = {"untyped-collection"}) boolean addAccountExplicitlyWithVisibility(in Account account, String password, in Bundle extras, in Map visibility); boolean setAccountVisibility(in Account a, in String packageName, int newVisibility); int getAccountVisibility(in Account a, in String packageName); /* Type may be null returns Map <Account, Integer>*/ + @SuppressWarnings(value = {"untyped-collection"}) Map getAccountsAndVisibilityForPackage(in String packageName, in String accountType); void registerAccountListener(in String[] accountTypes, String opPackageName); |