[jboss-cvs] JBossAS SVN: r101145 - in branches/JBPAPP_4_3_0_GA_JBPAPP-3771/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 Feb 19 02:01:44 EST 2010


Author: jiwils
Date: 2010-02-19 02:01:43 -0500 (Fri, 19 Feb 2010)
New Revision: 101145

Modified:
   branches/JBPAPP_4_3_0_GA_JBPAPP-3771/ejb3/src/main/org/jboss/ejb3/remoting/BaseRemoteProxy.java
   branches/JBPAPP_4_3_0_GA_JBPAPP-3771/ejb3/src/main/org/jboss/ejb3/session/BaseSessionRemoteProxy.java
Log:
Fix for JBPAPP-3771.  BaseRemoteProxy and BaseSessionRemoteProxy now have the same servial version IDs as their CP02-based equivalents.

Modified: branches/JBPAPP_4_3_0_GA_JBPAPP-3771/ejb3/src/main/org/jboss/ejb3/remoting/BaseRemoteProxy.java
===================================================================
--- branches/JBPAPP_4_3_0_GA_JBPAPP-3771/ejb3/src/main/org/jboss/ejb3/remoting/BaseRemoteProxy.java	2010-02-19 06:27:09 UTC (rev 101144)
+++ branches/JBPAPP_4_3_0_GA_JBPAPP-3771/ejb3/src/main/org/jboss/ejb3/remoting/BaseRemoteProxy.java	2010-02-19 07:01:43 UTC (rev 101145)
@@ -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-3771/ejb3/src/main/org/jboss/ejb3/session/BaseSessionRemoteProxy.java
===================================================================
--- branches/JBPAPP_4_3_0_GA_JBPAPP-3771/ejb3/src/main/org/jboss/ejb3/session/BaseSessionRemoteProxy.java	2010-02-19 06:27:09 UTC (rev 101144)
+++ branches/JBPAPP_4_3_0_GA_JBPAPP-3771/ejb3/src/main/org/jboss/ejb3/session/BaseSessionRemoteProxy.java	2010-02-19 07:01:43 UTC (rev 101145)
@@ -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