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
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal void
execute
(Object component, ComponentManager manager) Deprecated.abstract void
execute
(Object component, ComponentManager manager, org.codehaus.plexus.classworlds.realm.ClassRealm realm) Execute the phase.
-
Constructor Details
-
AbstractPhase
public AbstractPhase()
-
-
Method Details
-
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.
-