Package org.guvnor.ala.pipeline
Interface PipelineConfig
-
- All Known Implementing Classes:
PipelineConfigImpl
public interface PipelineConfigRepresent the configuration for a Pipeline containing each stage detailed configuration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<PipelineConfigStage>getConfigStages()Get the list of configurations, each representing a StageStringgetName()Get the pipeline name
-
-
-
Method Detail
-
getName
String getName()
Get the pipeline name- Returns:
- the name of the pipeline that will be created based on this configuration.
-
getConfigStages
List<PipelineConfigStage> getConfigStages()
Get the list of configurations, each representing a Stage- Returns:
- List
for all the stages in the pipeline that will be built using this configuration.
-
-