mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
Store settings in the DB, listen for events when settings are updated.
This commit is contained in:
@@ -1,15 +1,16 @@
|
||||
package org.briarproject.api;
|
||||
|
||||
import java.util.Hashtable;
|
||||
import java.util.Map;
|
||||
|
||||
public class TransportConfig extends Hashtable<String, String> {
|
||||
public class TransportConfig extends StringMap {
|
||||
|
||||
private static final long serialVersionUID = 2330384620787778596L;
|
||||
|
||||
public TransportConfig(Map<String, String> c) {
|
||||
super(c);
|
||||
public TransportConfig(Map<String, String> m) {
|
||||
super(m);
|
||||
}
|
||||
|
||||
public TransportConfig() {}
|
||||
public TransportConfig() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user