package de.thedevstack.conversationsplus.xmpp; import de.thedevstack.conversationsplus.entities.Account; import de.thedevstack.conversationsplus.xmpp.exceptions.IqPacketErrorException; import de.thedevstack.conversationsplus.xmpp.stanzas.IqPacket; /** * */ public interface IqPacketHandler { void handleIqPacket(Account account, IqPacket packet) throws IqPacketErrorException; }