You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by da...@apache.org on 2003/08/17 01:16:46 UTC

cvs commit: incubator-geronimo/modules/core/src/java/org/apache/geronimo/ejb/container ContainerImpl.java

dain        2003/08/16 16:16:46

  Modified:    modules/core/src/java/org/apache/geronimo/ejb/container
                        ContainerImpl.java
  Log:
  Initial revision of deployment dependency management system.
  
  Revision  Changes    Path
  1.7       +2 -19     incubator-geronimo/modules/core/src/java/org/apache/geronimo/ejb/container/ContainerImpl.java
  
  Index: ContainerImpl.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/core/src/java/org/apache/geronimo/ejb/container/ContainerImpl.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ContainerImpl.java	15 Aug 2003 14:12:19 -0000	1.6
  +++ ContainerImpl.java	16 Aug 2003 23:16:46 -0000	1.7
  @@ -59,24 +59,7 @@
   
   /**
    *
  - *
  - * @todo Currently this class implements the startRecursive method of 
  - * the JSR77 lifecycle. This should be moved to the AbstractContainer class
  - * @todo The stop method is implemented as stopRecursive, which should be moved
  - * to an abstractContainer class
    * @version $Revision$ $Date$
    */
  -public class ContainerImpl extends AbstractRPCContainer
  -{
  -  
  - 
  -    // @todo destroy not supported in JSR77 lifecycle, needs to be
  -    // integrated or removed.
  -    public void destroy()
  -    {
  -        plugins.clear();
  -        pluginObjects.clear();
  -    }
  -
  -
  +public class ContainerImpl extends AbstractRPCContainer {
   }