Files
briar/briar-api/src/org/briarproject/api/settings/SettingsManager.java
2016-01-27 12:51:55 +00:00

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;
}