src/net/java/otr4j/OtrKeyManagerStore.java
author Da Risk <da_risk@beem-project.com>
Wed, 31 Oct 2012 23:11:14 +0100
changeset 1005 4c7edc276676
parent 906 0ff0059f2ec3
permissions -rw-r--r--
Switch to Florian Shmauss maintained version of asmack. See doc/asmack-beem/README.txt for more information on how to build the asmack jar. The upstream asmack has a better implementation of XEP-0115 EntityCapabilities. So this commit remove the specific Beem implementation of this XEP and switch to the asmack one.

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);
}