Interface TransitionBuilder
public interface TransitionBuilder
Builder interface for creating Transition instances. This is the initial builder in the
transition creation chain that requires an ID to be set before proceeding to the buildable
transition builder.
TransitionBuilder is typically used as part of the WorkflowDefinitionBuilder to create transitions within a workflow definition. It follows a fluent builder pattern where the ID must be set first before other properties can be configured.
- Since:
- 1.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionid(TransitionId transitionId) Sets the ID for the transition and returns a buildable transition builder for further configuration.
-
Method Details
-
id
Sets the ID for the transition and returns a buildable transition builder for further configuration.- Parameters:
transitionId- the unique identifier for the transition- Returns:
- a BuildableTransitionBuilder for configuring additional properties
-