Class AbstractPhase
- java.lang.Object
-
- org.codehaus.plexus.lifecycle.phase.AbstractPhase
-
- All Implemented Interfaces:
Phase
- Direct Known Subclasses:
AutoConfigurePhase
,ConfigurablePhase
,ContextualizePhase
,DisposePhase
,InitializePhase
,LogDisablePhase
,LogEnablePhase
,ResumePhase
,ServiceablePhase
,StartPhase
,StopPhase
,SuspendPhase
public abstract class AbstractPhase extends Object implements Phase
-
-
Constructor Summary
Constructors Constructor Description AbstractPhase()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
execute(Object component, ComponentManager manager)
Deprecated.abstract void
execute(Object component, ComponentManager manager, org.codehaus.plexus.classworlds.realm.ClassRealm realm)
Execute the phase.
-
-
-
Method Detail
-
execute
public abstract void execute(Object component, ComponentManager manager, org.codehaus.plexus.classworlds.realm.ClassRealm realm) throws PhaseExecutionException
Execute the phase.- Specified by:
execute
in interfacePhase
- Parameters:
component
- The component.manager
-ComponentManager
realm
-ClassRealm
- Throws:
PhaseExecutionException
- in case of an error.
-
execute
public final void execute(Object component, ComponentManager manager) throws PhaseExecutionException
Deprecated.- Parameters:
component
- The component.manager
- TheComponentManager
.- Throws:
PhaseExecutionException
- in case of an error.
-
-