changeset 1040 | 197a85a35cba |
parent 1039 | 7d6f2526244a |
child 1041 | e5a970600066 |
1039:7d6f2526244a | 1040:197a85a35cba |
---|---|
1 package net.java.otr4j; |
|
2 |
|
3 public interface OtrKeyManagerStore { |
|
4 public abstract byte[] getPropertyBytes(String id); |
|
5 |
|
6 public abstract boolean getPropertyBoolean(String id, boolean defaultValue); |
|
7 |
|
8 public abstract void setProperty(String id, byte[] value); |
|
9 |
|
10 public abstract void setProperty(String id, boolean value); |
|
11 |
|
12 public abstract void removeProperty(String id); |
|
13 } |