Interface ConditionalResultBuilder
public interface ConditionalResultBuilder
Builder interface for creating ConditionalResult instances. This is the initial builder in the
conditional result creation chain that requires a destination ID to be set before proceeding to
the conditions stage builder.
ConditionalResultBuilder is typically used as part of transition builders to create conditional results that depend on runtime conditions. It follows a fluent builder pattern where the destination ID must be set first before conditions can be configured.
- Since:
- 1.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondestinationId(DestinationId destinationId) Sets the destination ID for the conditional result and returns a conditions stage builder for further configuration.
-
Method Details
-
destinationId
Sets the destination ID for the conditional result and returns a conditions stage builder for further configuration.- Parameters:
destinationId- the destination ID for the conditional result- Returns:
- a ConditionsStageConditionalResultBuilder for configuring conditions
-