[jboss-cvs] jboss/src/main/org/jboss/ejb ...

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


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

  Modified:    src/main/org/jboss/ejb  
                        StatefulSessionEnterpriseContext.java
                        StatelessSessionEnterpriseContext.java
  Log:
  EJBTHREE-650: getInvokedBusinessInterface return type fixed
  
  Revision  Changes    Path
  1.35      +2 -2      jboss/src/main/org/jboss/ejb/StatefulSessionEnterpriseContext.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: StatefulSessionEnterpriseContext.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/ejb/StatefulSessionEnterpriseContext.java,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -u -b -r1.34 -r1.35
  --- StatefulSessionEnterpriseContext.java	24 Feb 2006 16:57:20 -0000	1.34
  +++ StatefulSessionEnterpriseContext.java	14 Jul 2006 10:32:53 -0000	1.35
  @@ -41,7 +41,7 @@
    *
    * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
    * @author <a href="mailto:docodan at mvcsoft.com">Daniel OConnor</a>
  - * @version $Revision: 1.34 $
  + * @version $Revision: 1.35 $
    */
   public class StatefulSessionEnterpriseContext
      extends EnterpriseContext
  @@ -219,7 +219,7 @@
            throw new RuntimeException("NOT IMPLEMENTED");
         }
         
  -      public Object getInvokedBusinessInterface() throws IllegalStateException
  +      public Class getInvokedBusinessInterface() throws IllegalStateException
         {
            throw new RuntimeException("NOT IMPLEMENTED");
         }
  
  
  
  1.31      +2 -2      jboss/src/main/org/jboss/ejb/StatelessSessionEnterpriseContext.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: StatelessSessionEnterpriseContext.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/ejb/StatelessSessionEnterpriseContext.java,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -b -r1.30 -r1.31
  --- StatelessSessionEnterpriseContext.java	24 Feb 2006 16:57:20 -0000	1.30
  +++ StatelessSessionEnterpriseContext.java	14 Jul 2006 10:32:53 -0000	1.31
  @@ -37,7 +37,7 @@
    *      
    * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
    * @author <a href="sebastien.alborini at m4x.org">Sebastien Alborini</a>
  - * @version $Revision: 1.30 $
  + * @version $Revision: 1.31 $
    */
   public class StatelessSessionEnterpriseContext
      extends EnterpriseContext
  @@ -191,7 +191,7 @@
            throw new RuntimeException("NOT IMPLEMENTED");
         }
         
  -      public Object getInvokedBusinessInterface() throws IllegalStateException
  +      public Class getInvokedBusinessInterface() throws IllegalStateException
         {
            throw new RuntimeException("NOT IMPLEMENTED");
         }
  
  
  



More information about the jboss-cvs-commits mailing list