Interface WorkflowInformation
- All Known Implementing Classes:
WorkflowInformationDTO
public interface WorkflowInformation
Reference information about the currently executing workflow
-
Method Summary
Modifier and TypeMethodDescriptionThe history of the workflow.The description of the workflow.The unique identifier for the workflow.The name of the workflow.
-
Method Details
-
getWorkflowId
String getWorkflowId()The unique identifier for the workflow. Usually the primary key of the workflow entity.- Returns:
- the workflow id
-
getWorkflowName
String getWorkflowName()The name of the workflow. SeeSimpleWorkflow.getName()
.- Returns:
- the workflow name
-
getWorkflowDescription
String getWorkflowDescription()The description of the workflow. SeeSimpleWorkflow.getDescription()
.- Returns:
- the workflow description
-
getHistory
History getHistory()The history of the workflow. SeeSimpleWorkflow.getHistory()
.- Returns:
- the workflow history
-