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 voidexecute(Object component, ComponentManager manager)Deprecated.abstract voidexecute(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:
executein interfacePhase- Parameters:
component- The component.manager-ComponentManagerrealm-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.
-
-