Class Executables
- java.lang.Object
-
- org.apache.maven.buildcache.xml.config.Executables
-
- All Implemented Interfaces:
Serializable
public class Executables extends Object implements Serializable
Class Executables.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Executables()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddExecution(ExecutionIdsList executionIdsList)Method addExecution.voidaddGoalsList(GoalsList goalsList)Method addGoalsList.voidaddPlugin(PluginSet pluginSet)Method addPlugin.List<ExecutionIdsList>getExecutions()Method getExecutions.List<GoalsList>getGoalsLists()Method getGoalsLists.List<PluginSet>getPlugins()Method getPlugins.voidremoveExecution(ExecutionIdsList executionIdsList)Method removeExecution.voidremoveGoalsList(GoalsList goalsList)Method removeGoalsList.voidremovePlugin(PluginSet pluginSet)Method removePlugin.voidsetExecutions(List<ExecutionIdsList> executions)Set specify which executions should run always if present in build regardless of cached status.voidsetGoalsLists(List<GoalsList> goalsLists)Set specify which goals should run always if present in build regardless of cached status.voidsetPlugins(List<PluginSet> plugins)Set specify which executions should run always if present in build regardless of cached status.
-
-
-
Method Detail
-
addExecution
public void addExecution(ExecutionIdsList executionIdsList)
Method addExecution.- Parameters:
executionIdsList- a executionIdsList object.
-
addGoalsList
public void addGoalsList(GoalsList goalsList)
Method addGoalsList.- Parameters:
goalsList- a goalsList object.
-
addPlugin
public void addPlugin(PluginSet pluginSet)
Method addPlugin.- Parameters:
pluginSet- a pluginSet object.
-
getExecutions
public List<ExecutionIdsList> getExecutions()
Method getExecutions.- Returns:
- List
-
removeExecution
public void removeExecution(ExecutionIdsList executionIdsList)
Method removeExecution.- Parameters:
executionIdsList- a executionIdsList object.
-
removeGoalsList
public void removeGoalsList(GoalsList goalsList)
Method removeGoalsList.- Parameters:
goalsList- a goalsList object.
-
removePlugin
public void removePlugin(PluginSet pluginSet)
Method removePlugin.- Parameters:
pluginSet- a pluginSet object.
-
setExecutions
public void setExecutions(List<ExecutionIdsList> executions)
Set specify which executions should run always if present in build regardless of cached status.- Parameters:
executions- a executions object.
-
setGoalsLists
public void setGoalsLists(List<GoalsList> goalsLists)
Set specify which goals should run always if present in build regardless of cached status.- Parameters:
goalsLists- a goalsLists object.
-
-