Interface AlternativeCondition

All Superinterfaces:
ScenarioNode

@OpenApiAll public interface AlternativeCondition extends ScenarioNode
Represents alternative condition in the scenario flow.
See Also:
  • Method Details

    • getDecisionNode

      DecisionNode getDecisionNode()
      Gets condition decision node.
      Returns:
      condition decision node.
    • getMergeNode

      MergeNode getMergeNode()
      Gets condition merge node.
      Returns:
      condition merge node.
    • getAlternativeFlowSteps

      List<FlowStep> getAlternativeFlowSteps()
      Gets condition alternative flow steps.
      Returns:
      alternative flow steps of condition.
    • getIfFlow

      ControlFlow getIfFlow()
      Gets condition "if" flow.
      Returns:
      "if" flow of condition.
    • getElseFlow

      ControlFlow getElseFlow()
      Gets condition "else" flow.
      Returns:
      condition "else" flow.
    • getIfCondition

      String getIfCondition()
      Gets "if" text of condition.
      Returns:
      "if" text of condition.
    • setIfCondition

      void setIfCondition(String value)
      Sets "if" text of condition.
      Parameters:
      value - "if" text of condition.
    • getParentFlowStep

      FlowStep getParentFlowStep()
      Gets flow step to which alternative condition belongs.
      Returns:
      flow step to which alternative condition belongs.