aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/xmpp/IqPacketHandler.java
blob: cfd5172efa52dfb2e17e682fbf365f1c2e65cf62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
}