Commit 9bb81f7f authored by Derek DeMoro's avatar Derek DeMoro Committed by derek

Removing composite packet temp.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@654 b35dd754-fafc-0310-a699-88a17e54d16e
parent 3b9ef80f
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
package org.jivesoftware.messenger; package org.jivesoftware.messenger;
import org.jivesoftware.messenger.net.CompositePacket; import org.xmpp.packet.Packet;
/** /**
* <p>An uber router that can handle any packet type.</p> * <p>An uber router that can handle any packet type.</p>
...@@ -32,5 +32,5 @@ public interface PacketRouter extends IQRouter, MessageRouter, PresenceRouter { ...@@ -32,5 +32,5 @@ public interface PacketRouter extends IQRouter, MessageRouter, PresenceRouter {
* @throws NullPointerException If the packet is null * @throws NullPointerException If the packet is null
* @throws IllegalArgumentException If the packet is not one of the three XMPP packet types * @throws IllegalArgumentException If the packet is not one of the three XMPP packet types
*/ */
public void route(CompositePacket packet) throws IllegalArgumentException, NullPointerException; public void route(Packet packet) throws IllegalArgumentException, NullPointerException;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment