mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 19:29:06 +01:00
16 lines
402 B
Java
16 lines
402 B
Java
package org.briarproject.api.settings;
|
|
|
|
import org.briarproject.api.db.DbException;
|
|
|
|
public interface SettingsManager {
|
|
|
|
/** Returns all settings in the given namespace. */
|
|
Settings getSettings(String namespace) throws DbException;
|
|
|
|
/**
|
|
* Merges the given settings with the existing settings in the given
|
|
* namespace.
|
|
*/
|
|
void mergeSettings(Settings s, String namespace) throws DbException;
|
|
}
|