[jboss-cvs] JBossAS SVN: r60893 - trunk/iiop/src/main/org/jboss/proxy/ejb.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Feb 25 10:21:25 EST 2007


Author: dimitris at jboss.org
Date: 2007-02-25 10:21:25 -0500 (Sun, 25 Feb 2007)
New Revision: 60893

Modified:
   trunk/iiop/src/main/org/jboss/proxy/ejb/DynamicIIOPStub.java
   trunk/iiop/src/main/org/jboss/proxy/ejb/HomeHandleImplIIOP.java
Log:
add serialVersionUID

Modified: trunk/iiop/src/main/org/jboss/proxy/ejb/DynamicIIOPStub.java
===================================================================
--- trunk/iiop/src/main/org/jboss/proxy/ejb/DynamicIIOPStub.java	2007-02-25 15:19:56 UTC (rev 60892)
+++ trunk/iiop/src/main/org/jboss/proxy/ejb/DynamicIIOPStub.java	2007-02-25 15:21:25 UTC (rev 60893)
@@ -1,37 +1,35 @@
 /*
-* JBoss, Home of Professional Open Source
-* Copyright 2005, JBoss Inc., and individual contributors as indicated
-* by the @authors tag. See the copyright.txt in the distribution for a
-* full listing of individual contributors.
-*
-* This is free software; you can redistribute it and/or modify it
-* under the terms of the GNU Lesser General Public License as
-* published by the Free Software Foundation; either version 2.1 of
-* the License, or (at your option) any later version.
-*
-* This software is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-* Lesser General Public License for more details.
-*
-* You should have received a copy of the GNU Lesser General Public
-* License along with this software; if not, write to the Free
-* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-*/
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package org.jboss.proxy.ejb;
 
 import javax.rmi.CORBA.Util;
-import org.omg.CORBA_2_3.portable.InputStream;
-import org.omg.CORBA_2_3.portable.OutputStream;
-import org.omg.CORBA.portable.ApplicationException;
-import org.omg.CORBA.portable.RemarshalException;
-import org.omg.CORBA.SystemException;
 
 import org.jboss.iiop.rmi.marshal.strategy.StubStrategy;
 import org.jboss.logging.Logger;
-import org.jboss.proxy.ejb.HandleImplIIOP;
-import org.jboss.proxy.ejb.HomeHandleImplIIOP;
+import org.omg.CORBA.SystemException;
+import org.omg.CORBA.portable.ApplicationException;
+import org.omg.CORBA.portable.RemarshalException;
+import org.omg.CORBA_2_3.portable.InputStream;
+import org.omg.CORBA_2_3.portable.OutputStream;
 
 /**
  * Dynamically generated IIOP stub classes extend this abstract superclass,
@@ -52,7 +50,9 @@
 public abstract class DynamicIIOPStub 
       extends javax.rmi.CORBA.Stub
 {
-
+   /** @since 4.2.0 */
+   static final long serialVersionUID = 3283717238950231589L;
+   
    // Attributes -------------------------------------------------------------
    
    /**

Modified: trunk/iiop/src/main/org/jboss/proxy/ejb/HomeHandleImplIIOP.java
===================================================================
--- trunk/iiop/src/main/org/jboss/proxy/ejb/HomeHandleImplIIOP.java	2007-02-25 15:19:56 UTC (rev 60892)
+++ trunk/iiop/src/main/org/jboss/proxy/ejb/HomeHandleImplIIOP.java	2007-02-25 15:21:25 UTC (rev 60893)
@@ -1,24 +1,24 @@
 /*
-* JBoss, Home of Professional Open Source
-* Copyright 2005, JBoss Inc., and individual contributors as indicated
-* by the @authors tag. See the copyright.txt in the distribution for a
-* full listing of individual contributors.
-*
-* This is free software; you can redistribute it and/or modify it
-* under the terms of the GNU Lesser General Public License as
-* published by the Free Software Foundation; either version 2.1 of
-* the License, or (at your option) any later version.
-*
-* This software is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-* Lesser General Public License for more details.
-*
-* You should have received a copy of the GNU Lesser General Public
-* License along with this software; if not, write to the Free
-* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-*/
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package org.jboss.proxy.ejb;
 
 import java.io.IOException;
@@ -37,7 +37,7 @@
 /**
  * A CORBA-based EJB home handle implementation.
  *      
- * @author  <a href="mailto:rickard.oberg at telkel.com">Rickard ??berg</a>.
+ * @author  <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>.
  * @author  <a href="mailto:jason at planet57.com">Jason Dillon</a>
  * @author  <a href="mailto:reverbel at ime.usp.br">Francisco Reverbel</a>
  * @version $Revision$
@@ -45,6 +45,9 @@
 public class HomeHandleImplIIOP
       implements HomeHandle 
 {
+   /** @since 4.2.0 */
+   static final long serialVersionUID = 8652819695513956661L;
+
    /**
     * This handle encapsulates an stringfied CORBA reference for an 
     * <code>EJBHome</code>. 




More information about the jboss-cvs-commits mailing list