[jboss-cvs] jboss-ejb3/src/test/org/jboss/ejb3/test/ejbcontext ...

Carlo de Wolf carlo at nerdnet.nl
Fri Jul 14 06:32:35 EDT 2006


  User: wolfc   
  Date: 06/07/14 06:32:35

  Modified:    src/test/org/jboss/ejb3/test/ejbcontext       Stateful.java
                        Stateless.java StatelessBean.java
                        StatefulRemote.java StatefulBean.java
                        StatelessLocal.java
  Log:
  EJBTHREE-650: getInvokedBusinessInterface return type fixed
  
  Revision  Changes    Path
  1.5       +3 -3      jboss-ejb3/src/test/org/jboss/ejb3/test/ejbcontext/Stateful.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Stateful.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-ejb3/src/test/org/jboss/ejb3/test/ejbcontext/Stateful.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- Stateful.java	22 Jun 2006 20:53:15 -0000	1.4
  +++ Stateful.java	14 Jul 2006 10:32:35 -0000	1.5
  @@ -28,7 +28,7 @@
    * Comment
    *
    * @author <a href="mailto:bdecoste at jboss.com">William DeCoste</a>
  - * @version $Revision: 1.4 $
  + * @version $Revision: 1.5 $
    */
   @Remote
   public interface Stateful
  @@ -37,9 +37,9 @@
   
      public void test();
   
  -   public Object testInvokedBusinessInterface() throws Exception;
  +   public Class testInvokedBusinessInterface() throws Exception;
   
  -   public Object testLocalInvokedBusinessInterface() throws Exception;
  +   public Class testLocalInvokedBusinessInterface() throws Exception;
   
      public Object getBusinessObject() throws Exception;
   
  
  
  
  1.4       +2 -2      jboss-ejb3/src/test/org/jboss/ejb3/test/ejbcontext/Stateless.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Stateless.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-ejb3/src/test/org/jboss/ejb3/test/ejbcontext/Stateless.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- Stateless.java	22 Jun 2006 20:53:15 -0000	1.3
  +++ Stateless.java	14 Jul 2006 10:32:35 -0000	1.4
  @@ -27,13 +27,13 @@
    * Comment
    *
    * @author <a href="mailto:bdecoste at jboss.com">William DeCoste</a>
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
    */
   public interface Stateless
   {
      public void testEjbContextLookup() throws Exception;
      
  -   public Object testInvokedBusinessInterface() throws Exception;
  +   public Class testInvokedBusinessInterface() throws Exception;
      
      public Object testBusinessObject(Class businessInterface) throws Exception;
      
  
  
  
  1.4       +2 -2      jboss-ejb3/src/test/org/jboss/ejb3/test/ejbcontext/StatelessBean.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: StatelessBean.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-ejb3/src/test/org/jboss/ejb3/test/ejbcontext/StatelessBean.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- StatelessBean.java	22 Jun 2006 20:53:15 -0000	1.3
  +++ StatelessBean.java	14 Jul 2006 10:32:35 -0000	1.4
  @@ -35,7 +35,7 @@
    * Comment
    *
    * @author <a href="mailto:bdecoste at jboss.com">William DeCoste</a>
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
    */
   @Stateless(name="Stateless")
   @Local(StatelessLocal.class)
  @@ -61,7 +61,7 @@
         stateful.test();
      }
      
  -   public Object testInvokedBusinessInterface() throws Exception
  +   public Class testInvokedBusinessInterface() throws Exception
      {
         return sessionContext.getInvokedBusinessInterface();
      }
  
  
  
  1.3       +2 -2      jboss-ejb3/src/test/org/jboss/ejb3/test/ejbcontext/StatefulRemote.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: StatefulRemote.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-ejb3/src/test/org/jboss/ejb3/test/ejbcontext/StatefulRemote.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- StatefulRemote.java	22 Jun 2006 20:53:15 -0000	1.2
  +++ StatefulRemote.java	14 Jul 2006 10:32:35 -0000	1.3
  @@ -28,10 +28,10 @@
    * Comment
    *
    * @author <a href="mailto:bdecoste at jboss.com">William DeCoste</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   @Remote
   public interface StatefulRemote
   {
  -   public Object testInvokedBusinessInterface2() throws Exception;
  +   public Class testInvokedBusinessInterface2() throws Exception;
   }
  
  
  
  1.6       +4 -4      jboss-ejb3/src/test/org/jboss/ejb3/test/ejbcontext/StatefulBean.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: StatefulBean.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-ejb3/src/test/org/jboss/ejb3/test/ejbcontext/StatefulBean.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- StatefulBean.java	22 Jun 2006 20:53:15 -0000	1.5
  +++ StatefulBean.java	14 Jul 2006 10:32:35 -0000	1.6
  @@ -38,7 +38,7 @@
    * Comment
    *
    * @author <a href="mailto:bdecoste at jboss.com">William DeCoste</a>
  - * @version $Revision: 1.5 $
  + * @version $Revision: 1.6 $
    */
   @Stateful(name="Stateful")
   @RemoteBindings({@RemoteBinding(jndiBinding = "Stateful"), @RemoteBinding(jndiBinding = "StatefulRemote")})
  @@ -83,17 +83,17 @@
      }
   
   
  -   public Object testInvokedBusinessInterface() throws Exception
  +   public Class testInvokedBusinessInterface() throws Exception
      {
         return sessionContext.getInvokedBusinessInterface();
      }
      
  -   public Object testInvokedBusinessInterface2() throws Exception
  +   public Class testInvokedBusinessInterface2() throws Exception
      {
         return sessionContext.getInvokedBusinessInterface();
      }
      
  -   public Object testLocalInvokedBusinessInterface() throws Exception
  +   public Class testLocalInvokedBusinessInterface() throws Exception
      {
         return statefulRemote.testInvokedBusinessInterface2();
      }
  
  
  
  1.3       +2 -2      jboss-ejb3/src/test/org/jboss/ejb3/test/ejbcontext/StatelessLocal.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: StatelessLocal.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-ejb3/src/test/org/jboss/ejb3/test/ejbcontext/StatelessLocal.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- StatelessLocal.java	22 Jun 2006 20:53:15 -0000	1.2
  +++ StatelessLocal.java	14 Jul 2006 10:32:35 -0000	1.3
  @@ -27,13 +27,13 @@
    * Comment
    *
    * @author <a href="mailto:bdecoste at jboss.com">William DeCoste</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public interface StatelessLocal
   {
      public void testEjbContextLookup() throws Exception;
   
  -   public Object testInvokedBusinessInterface() throws Exception;
  +   public Class testInvokedBusinessInterface() throws Exception;
   
      public Object testBusinessObject(Class businessInterface) throws Exception;
   
  
  
  



More information about the jboss-cvs-commits mailing list