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

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


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

  Modified:    src/main/org/jboss/ejb3  BaseSessionContext.java
  Log:
  EJBTHREE-650: getInvokedBusinessInterface return type fixed
  
  Revision  Changes    Path
  1.24      +2 -2      jboss-ejb3/src/main/org/jboss/ejb3/BaseSessionContext.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: BaseSessionContext.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-ejb3/src/main/org/jboss/ejb3/BaseSessionContext.java,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -b -r1.23 -r1.24
  --- BaseSessionContext.java	22 Jun 2006 20:53:15 -0000	1.23
  +++ BaseSessionContext.java	14 Jul 2006 10:32:46 -0000	1.24
  @@ -61,7 +61,7 @@
    * Comment
    *
    * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
  - * @version $Revision: 1.23 $
  + * @version $Revision: 1.24 $
    */
   public class BaseSessionContext implements SessionContext, MessageDrivenContext, Externalizable
   {
  @@ -320,7 +320,7 @@
         return ((EJBContainer)container).getBusinessObject(baseContext, businessInterface); 
      }
      
  -   public Object getInvokedBusinessInterface() throws IllegalStateException
  +   public Class getInvokedBusinessInterface() throws IllegalStateException
      {
         return ((SessionContainer)container).getInvokedBusinessInterface();
      }
  
  
  



More information about the jboss-cvs-commits mailing list