Class Execution
- java.lang.Object
-
- org.apache.maven.plugin.lifecycle.Execution
-
- All Implemented Interfaces:
java.io.Serializable
public class Execution extends java.lang.Object implements java.io.SerializableA set of goals to execute.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Execution()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddGoal(java.lang.String string)Method addGoal.java.lang.ObjectgetConfiguration()Get configuration to pass to the goals.java.util.List<java.lang.String>getGoals()Method getGoals.voidremoveGoal(java.lang.String string)Method removeGoal.voidsetConfiguration(java.lang.Object configuration)Set configuration to pass to the goals.voidsetGoals(java.util.List<java.lang.String> goals)Set the goals to execute.
-
-
-
Method Detail
-
addGoal
public void addGoal(java.lang.String string)
Method addGoal.- Parameters:
string- a string object.
-
getConfiguration
public java.lang.Object getConfiguration()
Get configuration to pass to the goals.- Returns:
- Object
-
getGoals
public java.util.List<java.lang.String> getGoals()
Method getGoals.- Returns:
- List
-
removeGoal
public void removeGoal(java.lang.String string)
Method removeGoal.- Parameters:
string- a string object.
-
setConfiguration
public void setConfiguration(java.lang.Object configuration)
Set configuration to pass to the goals.- Parameters:
configuration- a configuration object.
-
setGoals
public void setGoals(java.util.List<java.lang.String> goals)
Set the goals to execute.- Parameters:
goals- a goals object.
-
-