Class CompositeOrchestration
java.lang.Object
com.xebialabs.deployit.engine.spi.orchestration.CompositeOrchestration
- All Implemented Interfaces:
Orchestration
- Direct Known Subclasses:
ParallelOrchestration
,SerialOrchestration
A CompositePlan holds other sub-plans which are either parallellized (see:
ParallelOrchestration
) or serialized (see: SerialOrchestration
).-
Field Summary
-
Constructor Summary
ModifierConstructorDescriptionprotected
CompositeOrchestration
(String description, Orchestration... plans) protected
CompositeOrchestration
(String description, List<Orchestration> plans) -
Method Summary
-
Field Details
-
plans
-
-
Constructor Details
-
CompositeOrchestration
-
CompositeOrchestration
-
-
Method Details
-
getPlans
Gets the full list of plans.- Returns:
- the full list of plans.
-
getType
Description copied from interface:Orchestration
The type of orchestration (Parallel, Serial, Interleaved)- Specified by:
getType
in interfaceOrchestration
- Returns:
- the type of plan
-
getDescription
Description copied from interface:Orchestration
The description of the orchestration describing the steps it contains- Specified by:
getDescription
in interfaceOrchestration
- Returns:
- the description
-