src/net/java/otr4j/OtrKeyManagerStore.java
author Vincent V. <marseille@beem-project.com>
Thu, 10 May 2012 14:03:11 +0200
changeset 979 847e7f7d88c1
parent 906 0ff0059f2ec3
permissions -rw-r--r--
API=8 because of the android:installLocation in the AndroidManifest.xml Checkstyle

package net.java.otr4j;

public interface OtrKeyManagerStore {
	public abstract byte[] getPropertyBytes(String id);

	public abstract boolean getPropertyBoolean(String id, boolean defaultValue);

	public abstract void setProperty(String id, byte[] value);

	public abstract void setProperty(String id, boolean value);

	public abstract void removeProperty(String id);
}