Class WorkflowPath
- java.lang.Object
-
- org.alfresco.service.cmr.workflow.WorkflowPath
-
@AlfrescoPublicApi public class WorkflowPath extends Object
Workflow Path Data Object Represents a path within an "in-flight" workflow instance. Simple workflows consists of a single "root" path. Multiple paths occur when a workflow instance branches, therefore more than one concurrent path is taken.- Author:
- davidc
-
-
Field Summary
Fields Modifier and Type Field Description booleanactiveDeprecated.StringidDeprecated.WorkflowInstanceinstanceDeprecated.WorkflowNodenodeDeprecated.
-
Constructor Summary
Constructors Constructor Description WorkflowPath(String id, WorkflowInstance instance, WorkflowNode node, boolean active)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()WorkflowInstancegetInstance()WorkflowNodegetNode()booleanisActive()StringtoString()
-
-
-
Field Detail
-
id
@Deprecated public String id
Deprecated.Unique id of Workflow Path
-
instance
@Deprecated public WorkflowInstance instance
Deprecated.Workflow Instance this path is part of
-
node
@Deprecated public WorkflowNode node
Deprecated.The Workflow Node the path is at
-
active
@Deprecated public boolean active
Deprecated.Is the path still active?
-
-
Constructor Detail
-
WorkflowPath
public WorkflowPath(String id, WorkflowInstance instance, WorkflowNode node, boolean active)
-
-
Method Detail
-
getId
public String getId()
- Returns:
- the id
-
getInstance
public WorkflowInstance getInstance()
- Returns:
- the instance
-
getNode
public WorkflowNode getNode()
- Returns:
- the node
-
isActive
public boolean isActive()
- Returns:
- the active
-
-