[jboss-cvs] JBossCache/src/org/jboss/cache/marshall ...
Elias Ross
genman at noderunner.net
Mon Dec 11 16:14:35 EST 2006
User: genman
Date: 06/12/11 16:14:35
Modified: src/org/jboss/cache/marshall
InactiveRegionException.java
MarshallingException.java MethodCall.java
RegionNameConflictException.java
RegionNotFoundException.java
Log:
JBCACHE-902 - Add serialver
Revision Changes Path
1.2 +3 -0 JBossCache/src/org/jboss/cache/marshall/InactiveRegionException.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: InactiveRegionException.java
===================================================================
RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/marshall/InactiveRegionException.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- InactiveRegionException.java 13 Oct 2006 14:53:28 -0000 1.1
+++ InactiveRegionException.java 11 Dec 2006 21:14:35 -0000 1.2
@@ -10,6 +10,9 @@
*/
public class InactiveRegionException extends CacheException
{
+
+ private static final long serialVersionUID = -5672201755094521936L;
+
public InactiveRegionException()
{
super();
1.4 +15 -12 JBossCache/src/org/jboss/cache/marshall/MarshallingException.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: MarshallingException.java
===================================================================
RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/marshall/MarshallingException.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- MarshallingException.java 7 Jun 2006 22:28:08 -0000 1.3
+++ MarshallingException.java 11 Dec 2006 21:14:35 -0000 1.4
@@ -7,6 +7,9 @@
*/
public class MarshallingException extends Exception
{
+
+ private static final long serialVersionUID = -5991339859063633060L;
+
public MarshallingException()
{
super();
1.3 +5 -0 JBossCache/src/org/jboss/cache/marshall/MethodCall.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: MethodCall.java
===================================================================
RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/marshall/MethodCall.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- MethodCall.java 30 Aug 2006 10:51:47 -0000 1.2
+++ MethodCall.java 11 Dec 2006 21:14:35 -0000 1.3
@@ -25,6 +25,11 @@
*/
public class MethodCall extends org.jgroups.blocks.MethodCall
{
+ /**
+ * It's unclear why this class would be serialized.
+ */
+ private static final long serialVersionUID = -5316198032742449998L;
+
private int methodIdInteger = -1;
public MethodCall()
1.5 +3 -0 JBossCache/src/org/jboss/cache/marshall/RegionNameConflictException.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: RegionNameConflictException.java
===================================================================
RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/marshall/RegionNameConflictException.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- RegionNameConflictException.java 12 Oct 2006 23:03:57 -0000 1.4
+++ RegionNameConflictException.java 11 Dec 2006 21:14:35 -0000 1.5
@@ -8,6 +8,9 @@
*/
public class RegionNameConflictException extends Exception
{
+
+ private static final long serialVersionUID = -7719282503234213209L;
+
public RegionNameConflictException()
{
super();
1.5 +3 -0 JBossCache/src/org/jboss/cache/marshall/RegionNotFoundException.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: RegionNotFoundException.java
===================================================================
RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/marshall/RegionNotFoundException.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- RegionNotFoundException.java 12 Oct 2006 23:03:57 -0000 1.4
+++ RegionNotFoundException.java 11 Dec 2006 21:14:35 -0000 1.5
@@ -7,6 +7,9 @@
*/
public class RegionNotFoundException extends Exception
{
+
+ private static final long serialVersionUID = 7321547249627414140L;
+
public RegionNotFoundException()
{
super();
More information about the jboss-cvs-commits
mailing list