Package com.orchestranetworks.workflow
Class WorkflowStepMetadata.WorkflowLink
java.lang.Object
com.orchestranetworks.workflow.WorkflowStepMetadata.WorkflowLink
- Enclosing class:
- WorkflowStepMetadata
Represents a link between workflow steps.
-
Constructor Summary
ConstructorsConstructorDescriptionWorkflowLink(String label, String fromStep, String toStep) Constructs a WorkflowLink with the specified label, source step, and target step. -
Method Summary
-
Constructor Details
-
WorkflowLink
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
Retrieves the label of the link.- Returns:
- The label of the link.
-
getFromStep
Retrieves the identifier of the source step.- Returns:
- The identifier of the source step.
-
getToStep
Retrieves the identifier of the target step.- Returns:
- The identifier of the target step.
-