Class Phase
- java.lang.Object
-
- org.apache.maven.plugin.lifecycle.Phase
-
- All Implemented Interfaces:
java.io.Serializable
public class Phase extends java.lang.Object implements java.io.Serializable
A phase mapping definition.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Object
configuration
Configuration to pass to all goals run in this phase.private java.util.List<Execution>
executions
Field executions.private java.lang.String
id
The ID of this phase, e.g.,generate-sources
.
-
Constructor Summary
Constructors Constructor Description Phase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addExecution(Execution execution)
Method addExecution.java.lang.Object
getConfiguration()
Get configuration to pass to all goals run in this phase.java.util.List<Execution>
getExecutions()
Method getExecutions.java.lang.String
getId()
Get the ID of this phase, e.g.,generate-sources
.void
removeExecution(Execution execution)
Method removeExecution.void
setConfiguration(java.lang.Object configuration)
Set configuration to pass to all goals run in this phase.void
setExecutions(java.util.List<Execution> executions)
Set the goals to execute within the phase.void
setId(java.lang.String id)
Set the ID of this phase, e.g.,generate-sources
.
-
-
-
Field Detail
-
id
private java.lang.String id
The ID of this phase, e.g.,generate-sources
.
-
executions
private java.util.List<Execution> executions
Field executions.
-
configuration
private java.lang.Object configuration
Configuration to pass to all goals run in this phase.
-
-
Method Detail
-
addExecution
public void addExecution(Execution execution)
Method addExecution.- Parameters:
execution
- a execution object.
-
getConfiguration
public java.lang.Object getConfiguration()
Get configuration to pass to all goals run in this phase.- Returns:
- Object
-
getExecutions
public java.util.List<Execution> getExecutions()
Method getExecutions.- Returns:
- List
-
getId
public java.lang.String getId()
Get the ID of this phase, e.g.,generate-sources
.- Returns:
- String
-
removeExecution
public void removeExecution(Execution execution)
Method removeExecution.- Parameters:
execution
- a execution object.
-
setConfiguration
public void setConfiguration(java.lang.Object configuration)
Set configuration to pass to all goals run in this phase.- Parameters:
configuration
- a configuration object.
-
setExecutions
public void setExecutions(java.util.List<Execution> executions)
Set the goals to execute within the phase.- Parameters:
executions
- a executions object.
-
setId
public void setId(java.lang.String id)
Set the ID of this phase, e.g.,generate-sources
.- Parameters:
id
- a id object.
-
-