CVS: plexus-container-new/src/java/org/apache/plexus/lifecycle/avalon AvalonLifecycleHandler.java,1.1.1.1,1.2 ContainerUtil.java,1.1.1.1,NONE
| Newsgroups | gmane.comp.java.plexus.devel |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/plexus/plexus-container-new/src/java/org/apache/plexus/lifecycle/avalon
In directory eng.werken.com:/tmp/cvs-serv25512/src/java/org/apache/plexus/lifecycle/avalon
Modified Files:
AvalonLifecycleHandler.java
Removed Files:
ContainerUtil.java
Log Message:
o Removed all weird Plexus manglings of Avalon's interfaces. Now Plexus can
handle many container APIs and many lifecycles so we won't tamper with
Avalon. Where Avalon applies we will adhere to whatever they decide.
If users need something different then they can extend the lifecycle as
they see fit and create different or extended container APIs.
Index: AvalonLifecycleHandler.java
===================================================================
RCS file: /cvsroot/plexus/plexus-container-new/src/java/org/apache/plexus/lifecycle/avalon/AvalonLifecycleHandler.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- AvalonLifecycleHandler.java 29 Mar 2003 03:49:44 -0000 1.1.1.1
+++ AvalonLifecycleHandler.java 23 Apr 2003 03:57:13 -0000 1.2
@@ -72,8 +72,6 @@
import org.apache.plexus.lifecycle.phase.StartPhase;
import org.apache.plexus.lifecycle.phase.StopPhase;
import org.apache.plexus.lifecycle.phase.SuspendPhase;
-import org.apache.plexus.lifecycle.phase.PlexusContextualizePhase;
-import org.apache.plexus.lifecycle.phase.PlexusServicePhase;
import org.apache.plexus.service.repository.ServiceCapsule;
import java.util.ArrayList;
@@ -133,9 +131,7 @@
start.add( new LogEnablePhase() );
start.add( new ContextualizePhase() );
- start.add( new PlexusContextualizePhase() );
start.add( new ServicePhase() );
- start.add( new PlexusServicePhase() );
start.add( new ConfigurePhase() );
start.add( new ParameterizePhase() );
start.add( new InitializePhase() );
--- ContainerUtil.java DELETED ---