lineage-sdk: Add call methods for list and delete to our settings provider

To match changes in fw/b settings provider

Change-Id: Ie4683fe29b9109091d0ebd4910d31b7b4c714daa
This commit is contained in:
Sam Mortimer
2019-09-18 13:29:25 -07:00
parent e530d7a126
commit 7e03d078bc
2 changed files with 137 additions and 46 deletions

View File

@@ -138,6 +138,36 @@ public final class LineageSettings {
*/
public static final String CALL_METHOD_MIGRATE_SETTINGS_FOR_USER = "migrate_settings_for_user";
/**
* @hide - Private call() method to list the entire system table
*/
public static final String CALL_METHOD_LIST_SYSTEM = "LIST_system";
/**
* @hide - Private call() method to list the entire secure table
*/
public static final String CALL_METHOD_LIST_SECURE = "LIST_secure";
/**
* @hide - Private call() method to list the entire global table
*/
public static final String CALL_METHOD_LIST_GLOBAL = "LIST_global";
/**
* @hide - Private call() method to delete an entry from the system table
*/
public static final String CALL_METHOD_DELETE_SYSTEM = "DELETE_system";
/**
* @hide - Private call() method to delete an entry from the secure table
*/
public static final String CALL_METHOD_DELETE_SECURE = "DELETE_secure";
/**
* @hide - Private call() method to delete an entry from the global table
*/
public static final String CALL_METHOD_DELETE_GLOBAL = "DELETE_global";
// endregion
// Thread-safe.