changeset 810 | 0ff0059f2ec3 |
797:fbd3585af53e | 810:0ff0059f2ec3 |
---|---|
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 } |