Make hotspot SSID and passphrase persistent

This commit is contained in:
Torsten Grote
2021-05-19 11:33:50 -03:00
committed by Sebastian Kürten
parent 7474ad8606
commit e22e9dcade
4 changed files with 97 additions and 41 deletions

View File

@@ -22,4 +22,11 @@ public interface SettingsManager {
* namespace.
*/
void mergeSettings(Settings s, String namespace) throws DbException;
/**
* Merges the given settings with any existing settings in the given
* namespace.
*/
void mergeSettings(Transaction txn, Settings s, String namespace)
throws DbException;
}