aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/xmpp/jingle/OnJinglePacketReceived.java
blob: d6dda1389cd552d9e57401e29ba4419ef0da6604 (plain)
1
2
3
4
5
6
7
8
9
package de.thedevstack.conversationsplus.xmpp.jingle;

import de.thedevstack.conversationsplus.entities.Account;
import de.thedevstack.conversationsplus.xmpp.PacketReceived;
import de.thedevstack.conversationsplus.xmpp.jingle.stanzas.JinglePacket;

public interface OnJinglePacketReceived extends PacketReceived {
	public void onJinglePacketReceived(Account account, JinglePacket packet);
}