public class Phase
extends java.lang.Object
implements java.io.Serializable
Modifier and Type | Field and 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 and Description |
---|
Phase() |
Modifier and Type | Method and 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 . |
private java.lang.String id
generate-sources
.private java.util.List<Execution> executions
private java.lang.Object configuration
public void addExecution(Execution execution)
execution
- a execution object.public java.lang.Object getConfiguration()
public java.util.List<Execution> getExecutions()
public java.lang.String getId()
generate-sources
.public void removeExecution(Execution execution)
execution
- a execution object.public void setConfiguration(java.lang.Object configuration)
configuration
- a configuration object.public void setExecutions(java.util.List<Execution> executions)
executions
- a executions object.public void setId(java.lang.String id)
generate-sources
.id
- a id object.