Commit 901f1937 authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

More Serializable fixes.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk/src/plugins/gateway@4483 b35dd754-fafc-0310-a699-88a17e54d16e
parent 949ccaef
...@@ -10,6 +10,8 @@ ...@@ -10,6 +10,8 @@
package org.jivesoftware.wildfire.gateway; package org.jivesoftware.wildfire.gateway;
import java.io.Serializable;
import org.xmpp.packet.JID; import org.xmpp.packet.JID;
/** /**
...@@ -20,7 +22,9 @@ import org.xmpp.packet.JID; ...@@ -20,7 +22,9 @@ import org.xmpp.packet.JID;
* *
* @author Noah Campbell * @author Noah Campbell
*/ */
public class SubscriptionInfo { public class SubscriptionInfo implements Serializable {
private static final long serialVersionUID = 1L;
/** /**
* Construct a new <code>SubscriptionInfo</code> * Construct a new <code>SubscriptionInfo</code>
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
package org.jivesoftware.wildfire.gateway.roster; package org.jivesoftware.wildfire.gateway.roster;
import java.io.Serializable;
import java.io.IOException; import java.io.IOException;
import java.text.MessageFormat; import java.text.MessageFormat;
import java.util.HashSet; import java.util.HashSet;
...@@ -24,7 +25,9 @@ import org.xmpp.packet.JID; ...@@ -24,7 +25,9 @@ import org.xmpp.packet.JID;
* *
* @author Noah Campbell * @author Noah Campbell
*/ */
public abstract class AbstractForeignContact implements ForeignContact { public abstract class AbstractForeignContact implements ForeignContact, Serializable {
private static final long serialVersionUID = 1L;
/** /**
* The id for this contact. This maps directly to the legacy userid. * The id for this contact. This maps directly to the legacy userid.
......
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