[jboss-cvs] JBossAS SVN: r107060 - in branches/JBPAPP_4_3_0_GA_JBPAPP-4729/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
Fri Jul 23 13:38:47 EDT 2010


Author: bmaxwell
Date: 2010-07-23 13:38:46 -0400 (Fri, 23 Jul 2010)
New Revision: 107060

Modified:
   branches/JBPAPP_4_3_0_GA_JBPAPP-4729/ejb3/src/main/org/jboss/ejb3/remoting/BaseRemoteProxy.java
   branches/JBPAPP_4_3_0_GA_JBPAPP-4729/ejb3/src/main/org/jboss/ejb3/session/BaseSessionRemoteProxy.java
Log:
[JBPAPP-4729] backport (JBPAPP-862 / EJBTHREE-1118) add serialVersionUID

Modified: branches/JBPAPP_4_3_0_GA_JBPAPP-4729/ejb3/src/main/org/jboss/ejb3/remoting/BaseRemoteProxy.java
===================================================================
--- branches/JBPAPP_4_3_0_GA_JBPAPP-4729/ejb3/src/main/org/jboss/ejb3/remoting/BaseRemoteProxy.java	2010-07-23 17:33:57 UTC (rev 107059)
+++ branches/JBPAPP_4_3_0_GA_JBPAPP-4729/ejb3/src/main/org/jboss/ejb3/remoting/BaseRemoteProxy.java	2010-07-23 17:38:46 UTC (rev 107060)
@@ -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_3_0_GA_JBPAPP-4729/ejb3/src/main/org/jboss/ejb3/session/BaseSessionRemoteProxy.java
===================================================================
--- branches/JBPAPP_4_3_0_GA_JBPAPP-4729/ejb3/src/main/org/jboss/ejb3/session/BaseSessionRemoteProxy.java	2010-07-23 17:33:57 UTC (rev 107059)
+++ branches/JBPAPP_4_3_0_GA_JBPAPP-4729/ejb3/src/main/org/jboss/ejb3/session/BaseSessionRemoteProxy.java	2010-07-23 17:38:46 UTC (rev 107060)
@@ -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