src/net/java/otr4j/session/SessionStatus.java
author Da Risk <da_risk@beem-project.com>
Fri, 27 Jan 2012 00:05:55 +0100
changeset 964 89dbb4bee206
parent 911 ca323cff3ac9
permissions -rw-r--r--
Initialize the xmpp connection config in a background thread. On android > 3.x network operations on the main thread crash the application. This move the dns request made by the ConnectionConfiguration in another thread by lazily initializing the XMPPConnection

/*
 * otr4j, the open source java otr library.
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */
package net.java.otr4j.session;

/**
 * 
 * @author George Politis
 */
public enum SessionStatus {
	PLAINTEXT,
	ENCRYPTED,
	FINISHED
}