Interface StepConfigurationBuilder
public interface StepConfigurationBuilder
Builder for step configuration of a custom step.
Defines the custom step nodes, step properties, output layout and settings.
One of the 3 main builders required for a custom step:
- StepConfigurationBuilder
- StepProcessorBuilder
- CustomTypeMetadataBuilder
- Since:
- 2.0.0
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interface
static interface
static interface
static interface
static interface
-
Method Summary
Modifier and TypeMethodDescriptionwithNodes
(Function<StepNodeBuilder, List<NodeDefinition>> nodeBuilder) Configures the input and output nodes that are associated with the custom step.
-
Method Details
-
withNodes
StepConfigurationBuilder.AddStepPropertiesBuilder withNodes(Function<StepNodeBuilder, List<NodeDefinition>> nodeBuilder) Configures the input and output nodes that are associated with the custom step.- Parameters:
nodeBuilder
- list of Node Definitions- Returns:
- Add step properties builder
-