Class WorkflowStepMetadata.WorkflowLink

java.lang.Object
com.orchestranetworks.workflow.WorkflowStepMetadata.WorkflowLink
Enclosing class:
WorkflowStepMetadata

public static class WorkflowStepMetadata.WorkflowLink extends Object
Represents a link between workflow steps.
  • Constructor Details

    • WorkflowLink

      public WorkflowLink(String label, String fromStep, String toStep)
      Constructs a WorkflowLink with the specified label, source step, and target step.
      Parameters:
      label - The label of the link.
      fromStep - The identifier of the source step.
      toStep - The identifier of the target step.
  • Method Details

    • getLabel

      public String getLabel()
      Retrieves the label of the link.
      Returns:
      The label of the link.
    • getFromStep

      public String getFromStep()
      Retrieves the identifier of the source step.
      Returns:
      The identifier of the source step.
    • getToStep

      public String getToStep()
      Retrieves the identifier of the target step.
      Returns:
      The identifier of the target step.