mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 02:39:05 +01:00
21 lines
481 B
Java
21 lines
481 B
Java
package org.briarproject.api.settings;
|
|
|
|
import org.briarproject.api.db.DbException;
|
|
import org.briarproject.api.Settings;
|
|
|
|
public interface SettingsManager {
|
|
|
|
/**
|
|
* Returns the settings object identified by the provided namespace
|
|
* string
|
|
*/
|
|
Settings getSettings(String namespace) throws DbException;
|
|
|
|
/**
|
|
* Merges (read syncs) the provided settings identified by the provided namespace
|
|
* string
|
|
*/
|
|
void mergeSettings(Settings s, String namespace) throws DbException;
|
|
|
|
}
|