User: reverbel
  Date: 01/11/21 04:30:24

  Modified:    iiop/src/main/org/jboss/ejb/plugins/iiop/client
                        DynamicStub.java
  Log:
  Changed abstract superclass of DynamicStub: was
  org.omg.CORBA_2_3.portable.ObjectImpl, now is javax.rmi.CORBA.Stub
  (which extends org.omg.CORBA_2_3.portable.ObjectImpl).
  This change fixes a bug I've found running the bang test.
  
  Revision  Changes    Path
  1.3       +4 -4      
contrib/iiop/src/main/org/jboss/ejb/plugins/iiop/client/DynamicStub.java
  
  Index: DynamicStub.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/contrib/iiop/src/main/org/jboss/ejb/plugins/iiop/client/DynamicStub.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DynamicStub.java  2001/11/02 21:17:42     1.2
  +++ DynamicStub.java  2001/11/21 12:30:24     1.3
  @@ -7,7 +7,7 @@
   package org.jboss.ejb.plugins.iiop.client;
   
   import javax.rmi.CORBA.Util;
  -import org.omg.CORBA_2_3.portable.ObjectImpl;
  +import javax.rmi.CORBA.Stub;
   import org.omg.CORBA_2_3.portable.InputStream;
   import org.omg.CORBA_2_3.portable.OutputStream;
   import org.omg.CORBA.portable.ApplicationException;
  @@ -18,7 +18,7 @@
   
   /**
    * Dynamically generated IIOP stub classes extend this abstract superclass,
  - * which extends <code>org.omg.CORBA_2_3.portable.ObjectImpl</code>.
  + * which extends <code>javax.rmi.CORBA.Stub</code>.
    *
    * A <code>DynamicStub</code> is a local proxy of a remote object. It has 
    * methods (<code>invoke()</code>, <code>invokeBoolean()</code>, 
  @@ -30,10 +30,10 @@
    * of operation parameters.
    * 
    * @author  <a href="mailto:[EMAIL PROTECTED]";>Francisco Reverbel</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public abstract class DynamicStub 
  -      extends ObjectImpl
  +      extends javax.rmi.CORBA.Stub
   {
   
      // Constructor -------------------------------------------------------------
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to