AccountStorage.aidl (360B) - raw
1 package me.rhunk.snapenhance.bridge; 2 3 4 interface AccountStorage { 5 Map<String, String> getAccounts(); // userId -> username 6 void addAccount(String userId, String username, in ParcelFileDescriptor data); 7 void removeAccount(String userId); 8 boolean isAccountExists(String userId); 9 @nullable ParcelFileDescriptor getAccountData(String userId); 10 }