Class WorkflowNode
- java.lang.Object
-
- org.alfresco.service.cmr.workflow.WorkflowNode
-
@AlfrescoPublicApi public class WorkflowNode extends Object
Workflow Node Data Object Represents a Node within the Workflow Definition.- Author:
- davidc
-
-
Field Summary
Fields Modifier and Type Field Description StringdescriptionDeprecated.booleanisTaskNodeDeprecated.StringnameDeprecated.StringtitleDeprecated.WorkflowTransition[]transitionsDeprecated.StringtypeDeprecated.
-
Constructor Summary
Constructors Constructor Description WorkflowNode(String name, String title, String description, String type, boolean isTaskNode, WorkflowTransition... transitions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()StringgetName()StringgetTitle()WorkflowTransition[]getTransitions()StringgetType()booleanisTaskNode()StringtoString()
-
-
-
Field Detail
-
name
@Deprecated public String name
Deprecated.Workflow Node Name
-
title
@Deprecated public String title
Deprecated.Workflow Node Title (Localised)
-
description
@Deprecated public String description
Deprecated.Workflow Node Description (Localised)
-
type
@Deprecated public String type
Deprecated.Type of the Workflow Node (typically this is BPM engine specific - informational only
-
isTaskNode
@Deprecated public boolean isTaskNode
Deprecated.Does this Workflow Node represent human interaction?
-
transitions
@Deprecated public WorkflowTransition[] transitions
Deprecated.The transitions leaving this node (or null, if none)
-
-
Constructor Detail
-
WorkflowNode
public WorkflowNode(String name, String title, String description, String type, boolean isTaskNode, WorkflowTransition... transitions)
-
-
Method Detail
-
getName
public String getName()
- Returns:
- the name
-
getTitle
public String getTitle()
- Returns:
- the title
-
getDescription
public String getDescription()
- Returns:
- the description
-
getType
public String getType()
- Returns:
- the type
-
isTaskNode
public boolean isTaskNode()
- Returns:
- the isTaskNode
-
getTransitions
public WorkflowTransition[] getTransitions()
- Returns:
- the transitions
-
-