User: fleury  
  Date: 00/06/01 13:46:59

  Modified:    src/main/org/jboss/ejb Container.java
  Log:
  Factoring the mappings and the container invoker
  
  Revision  Changes    Path
  1.10      +13 -3     jboss/src/main/org/jboss/ejb/Container.java
  
  Index: Container.java
  ===================================================================
  RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/ejb/Container.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- Container.java    2000/05/31 19:02:58     1.9
  +++ Container.java    2000/06/01 20:46:58     1.10
  @@ -62,7 +62,8 @@
    *
    *   @see ContainerFactory
    *   @author Rickard �berg ([EMAIL PROTECTED])
  - *   @version $Revision: 1.9 $
  + *    @author <a href="[EMAIL PROTECTED]">Marc Fleury</a>
  + *   @version $Revision: 1.10 $
    */
   public abstract class Container
   {
  @@ -97,6 +98,15 @@
      
      // This is the TransactionManager
      protected TransactionManager tm;
  +   
  +   // These are the mappings between the home interface methods and the container 
methods
  +   protected Map homeMapping;
  +     
  +   // These are the mappings between the remote interface methods and the bean 
methods
  +   protected Map beanMapping;
  +   
  +     // This is the container invoker for this container
  +   protected ContainerInvoker containerInvoker;
        
      // Public --------------------------------------------------------
        
  @@ -211,9 +221,9 @@
                
                // Setup "java:" namespace
         setupEnvironment();
  -      
  +       
                // Initialize pool 
  -             // MF FIXME: the instancePool does not belong here
  +             // MF FIXME: the instancePool does not belong here, it belongs to 
statelessC and entityC
         if (instancePool != null) instancePool.init();
         
           // Initialize the interceptor by calling the chain
  
  
  

Reply via email to