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 TransportProperties extends Hashtable<String, String> {
|
||||
public class TransportProperties extends StringMap {
|
||||
|
||||
private static final long serialVersionUID = 7533739534204953625L;
|
||||
|
||||
public TransportProperties(Map<String, String> p) {
|
||||
super(p);
|
||||
public TransportProperties(Map<String, String> m) {
|
||||
super(m);
|
||||
}
|
||||
|
||||
public TransportProperties() {}
|
||||
public TransportProperties() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user