Allow plugins to store encypted settings in etc/$PLUGIN.secure.config

Change-Id: I82dd2fdd33c53aa2db7cb136c79548e0fc8d0ede
This commit is contained in:
David Pursehouse
2016-07-22 11:00:25 +09:00
parent 9d2fbc1ddb
commit 5b47bc4d65
6 changed files with 147 additions and 6 deletions

View File

@@ -127,6 +127,12 @@ public class UpgradeFrom2_0_xTest extends InitTestCase {
return cfg.getStringList(section, subsection, name);
}
@Override
public String[] getListForPlugin(String pluginName, String section,
String subsection, String name) {
throw new UnsupportedOperationException("not used by tests");
}
@Override
public void setList(String section, String subsection, String name,
List<String> values) {