Thu, 26 Dec 2024 17:19:15 +0100
update status in contact list and conversations
package de.unixwork.im; import net.java.otr4j.crypto.OtrCryptoEngine; import net.java.otr4j.crypto.OtrCryptoEngineImpl; public class XmppSession { private String xid; private String resource; private boolean isSecure = false; public XmppSession(String xid, String resource) { this.xid = xid; this.resource = resource; } public void startOtr(Xmpp xmpp) { } public void endOtr(Xmpp xmpp) { } public boolean isSecure() { return isSecure; } }