Package org.guvnor.ala.pipeline.impl
Class PipelineConfigImpl
- java.lang.Object
-
- org.guvnor.ala.pipeline.impl.PipelineConfigImpl
-
- All Implemented Interfaces:
PipelineConfig
public class PipelineConfigImpl extends Object implements PipelineConfig
-
-
Constructor Summary
Constructors Constructor Description PipelineConfigImpl()PipelineConfigImpl(String name, List<PipelineConfigStage> configStages)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<PipelineConfigStage>getConfigStages()Get the list of configurations, each representing a StageStringgetName()Get the pipeline namevoidsetConfigStages(List<PipelineConfigStage> configStages)voidsetName(String name)StringtoString()
-
-
-
Constructor Detail
-
PipelineConfigImpl
public PipelineConfigImpl()
-
PipelineConfigImpl
public PipelineConfigImpl(String name, List<PipelineConfigStage> configStages)
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:PipelineConfigGet the pipeline name- Specified by:
getNamein interfacePipelineConfig- Returns:
- the name of the pipeline that will be created based on this configuration.
-
getConfigStages
public List<PipelineConfigStage> getConfigStages()
Description copied from interface:PipelineConfigGet the list of configurations, each representing a Stage- Specified by:
getConfigStagesin interfacePipelineConfig- Returns:
- List
for all the stages in the pipeline that will be built using this configuration.
-
setName
public void setName(String name)
-
setConfigStages
public void setConfigStages(List<PipelineConfigStage> configStages)
-
-