[jboss-cvs] JBossAS SVN: r73983 - in branches/JBPAPP_4_2_0_GA_CP/ejb3/src/main/org/jboss/ejb3: session and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Jun 3 02:39:53 EDT 2008


Author: dstephan
Date: 2008-06-03 02:39:52 -0400 (Tue, 03 Jun 2008)
New Revision: 73983

Modified:
   branches/JBPAPP_4_2_0_GA_CP/ejb3/src/main/org/jboss/ejb3/remoting/BaseRemoteProxy.java
   branches/JBPAPP_4_2_0_GA_CP/ejb3/src/main/org/jboss/ejb3/session/BaseSessionRemoteProxy.java
Log:
Added SerialVersionUID - JBPAPP-862.

Modified: branches/JBPAPP_4_2_0_GA_CP/ejb3/src/main/org/jboss/ejb3/remoting/BaseRemoteProxy.java
===================================================================
--- branches/JBPAPP_4_2_0_GA_CP/ejb3/src/main/org/jboss/ejb3/remoting/BaseRemoteProxy.java	2008-06-03 04:35:05 UTC (rev 73982)
+++ branches/JBPAPP_4_2_0_GA_CP/ejb3/src/main/org/jboss/ejb3/remoting/BaseRemoteProxy.java	2008-06-03 06:39:52 UTC (rev 73983)
@@ -37,6 +37,8 @@
  */
 public abstract class BaseRemoteProxy implements java.io.Serializable, InvocationHandler, RemoteProxy
 {
+   private static final long serialVersionUID = 1126421850898582900L;
+   
    protected String containerId;
    protected String containerGuid;
    protected Interceptor[] interceptors;

Modified: branches/JBPAPP_4_2_0_GA_CP/ejb3/src/main/org/jboss/ejb3/session/BaseSessionRemoteProxy.java
===================================================================
--- branches/JBPAPP_4_2_0_GA_CP/ejb3/src/main/org/jboss/ejb3/session/BaseSessionRemoteProxy.java	2008-06-03 04:35:05 UTC (rev 73982)
+++ branches/JBPAPP_4_2_0_GA_CP/ejb3/src/main/org/jboss/ejb3/session/BaseSessionRemoteProxy.java	2008-06-03 06:39:52 UTC (rev 73983)
@@ -37,6 +37,8 @@
  */
 public abstract class BaseSessionRemoteProxy extends org.jboss.ejb3.remoting.BaseRemoteProxy
 {
+   private static final long serialVersionUID = 8310915813626447181L;
+   
    protected Object id;
    
    protected Handle handle;




More information about the jboss-cvs-commits mailing list