[jboss-cvs] JBossAS SVN: r86225 - trunk/cluster/src/main/org/jboss/ha/timestamp.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Mar 23 16:03:52 EDT 2009


Author: bstansberry at jboss.com
Date: 2009-03-23 16:03:52 -0400 (Mon, 23 Mar 2009)
New Revision: 86225

Modified:
   trunk/cluster/src/main/org/jboss/ha/timestamp/TimestampDiscrepancy.java
Log:
[JBAS-5552] Make TimestampDiscrepancy Serializable

Modified: trunk/cluster/src/main/org/jboss/ha/timestamp/TimestampDiscrepancy.java
===================================================================
--- trunk/cluster/src/main/org/jboss/ha/timestamp/TimestampDiscrepancy.java	2009-03-23 19:14:15 UTC (rev 86224)
+++ trunk/cluster/src/main/org/jboss/ha/timestamp/TimestampDiscrepancy.java	2009-03-23 20:03:52 UTC (rev 86225)
@@ -22,6 +22,8 @@
 
 package org.jboss.ha.timestamp;
 
+import java.io.Serializable;
+
 /**
  * Provides information on possible system timestamp discrepancies between
  * a remote node and the local node.
@@ -36,8 +38,11 @@
  * 
  * @version $Revision: $
  */
-public class TimestampDiscrepancy
+public class TimestampDiscrepancy implements Serializable
 {
+   /** The serialVersionUID */
+   private static final long serialVersionUID = -6193847623651196577L;
+   
    /** Fake discrepancy that indicates no system clock difference */
    public static final TimestampDiscrepancy NO_DISCREPANCY;
    static




More information about the jboss-cvs-commits mailing list