Interface StepPropertiesBuilder
public interface StepPropertiesBuilder
Builder for the step properties of a custom step.
Used by StepConfigurationBuilder.
- Since:
- 2.0.0
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionaddStepProperty
(Function<StepPropertiesBuilder.StepPropertyBuilder, StepProperty> stepPropertyBuilder) Adds a step property to the custom step.build()
Builds a list of step property objects.
-
Method Details
-
addStepProperty
StepPropertiesBuilder addStepProperty(Function<StepPropertiesBuilder.StepPropertyBuilder, StepProperty> stepPropertyBuilder) Adds a step property to the custom step. Method can be called multiple times to add multiple step properties.- Parameters:
stepPropertyBuilder
- builder for a step property- Returns:
- Step properties builder
-
build
List<StepProperty> build()Builds a list of step property objects.- Returns:
- A list of specific concrete step property objects
-