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 { void onJinglePacketReceived(Account account, JinglePacket packet); }