User: fleury  
  Date: 00/06/01 16:16:35

  Modified:    src/main/org/jboss/ejb StatefulSessionContainer.java
  Log:
  container invoker move
  
  Revision  Changes    Path
  1.6       +4 -9      jboss/src/main/org/jboss/ejb/StatefulSessionContainer.java
  
  Index: StatefulSessionContainer.java
  ===================================================================
  RCS file: 
/products/cvs/ejboss/jboss/src/main/org/jboss/ejb/StatefulSessionContainer.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- StatefulSessionContainer.java     2000/06/01 21:12:59     1.5
  +++ StatefulSessionContainer.java     2000/06/01 23:16:35     1.6
  @@ -31,7 +31,7 @@
    *      
    *   @see <related>
    *   @author Rickard �berg ([EMAIL PROTECTED])
  - *   @version $Revision: 1.5 $
  + *   @version $Revision: 1.6 $
    */
   public class StatefulSessionContainer
      extends Container
  @@ -65,11 +65,6 @@
         ci.setContainer(this);
      }
   
  -   public ContainerInvoker getContainerInvoker() 
  -   { 
  -     return containerInvoker; 
  -   }
  -
      public void setInstanceCache(InstanceCache ic)
      { 
         this.instanceCache = ic; 
  @@ -307,7 +302,7 @@
            {
               // Implemented by bean
               map.put(m[i], beanClass.getMethod(m[i].getName(), 
m[i].getParameterTypes()));
  -            System.out.println("Bean Method mapped "+m[i].getName());
  +              
                 }
            else
            {
  @@ -315,8 +310,8 @@
               {
                  // Implemented by container
                  map.put(m[i], getClass().getMethod(m[i].getName(), new Class[] { 
Method.class, Object[].class , StatefulSessionEnterpriseContext.class}));
  -               System.out.println("Container method mapped "+m[i].getName()); 
  -            } catch (NoSuchMethodException e)
  +            
  +                     } catch (NoSuchMethodException e)
               {
                  System.out.println(m[i].getName() + " in bean has not been mapped");
               }
  
  
  

Reply via email to