Package com.mendix.workflows
Interface JumpToOptions
-
public interface JumpToOptions
Provides an interface for jump-to operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<? extends JumpableWorkflowActivity>
getCurrentActivities()
Returns the list of activities that can be changed using jump-to.JumpToBuilder
prepareJumpTo()
Returns a builder to configure and apply a jump-to configuration for this workflow.
-
-
-
Method Detail
-
getCurrentActivities
java.util.Collection<? extends JumpableWorkflowActivity> getCurrentActivities()
Returns the list of activities that can be changed using jump-to. On the returned JumpableWorkflowActivity you can find the details of the source activity and the applicable targets to jump to.- Returns:
- the list of activities that can be changed using jump-to.
-
prepareJumpTo
JumpToBuilder prepareJumpTo()
Returns a builder to configure and apply a jump-to configuration for this workflow.- Returns:
- a builder to configure and apply a jump-to configuration for this workflow.
-
-