public interface WorkflowNode extends HasMetaData
WorkflowNode
represents a node/step in a
WorkflowModel
.Modifier and Type | Field and Description |
---|---|
static java.lang.String |
TYPE_AND_JOIN |
static java.lang.String |
TYPE_AND_SPLIT |
static java.lang.String |
TYPE_CONTAINER |
static java.lang.String |
TYPE_DYNAMIC_PARTICIPANT |
static java.lang.String |
TYPE_END |
static java.lang.String |
TYPE_EXTERNAL_PROCESS |
static java.lang.String |
TYPE_OR_JOIN |
static java.lang.String |
TYPE_OR_SPLIT |
static java.lang.String |
TYPE_PARTICIPANT |
static java.lang.String |
TYPE_PROCESS |
static java.lang.String |
TYPE_START |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDescription()
Returns the description of the
WorkflowNode . |
java.lang.String |
getId()
Returns the ID of the
WorkflowNode . |
java.util.List<WorkflowTransition> |
getIncomingTransitions()
Returns the incoming
s assigned
to the WorkflowNode . |
java.lang.String |
getTitle()
Returns the
WorkflowNode s title. |
java.util.List<WorkflowTransition> |
getTransitions()
Returns the outgoing
s assigned
to the WorkflowNode . |
java.lang.String |
getType()
Returns the type of the
WorkflowNode . |
void |
setDescription(java.lang.String description)
Set the description of the
WorkflowNode . |
void |
setTitle(java.lang.String title)
Sets the title of the
WorkflowNode . |
void |
setType(java.lang.String type)
Sets the type of the
WorkflowNode . |
getMetaData, getMetaDataMap
static final java.lang.String TYPE_START
static final java.lang.String TYPE_END
static final java.lang.String TYPE_AND_SPLIT
static final java.lang.String TYPE_AND_JOIN
static final java.lang.String TYPE_OR_SPLIT
static final java.lang.String TYPE_OR_JOIN
static final java.lang.String TYPE_PROCESS
static final java.lang.String TYPE_CONTAINER
static final java.lang.String TYPE_PARTICIPANT
static final java.lang.String TYPE_DYNAMIC_PARTICIPANT
static final java.lang.String TYPE_EXTERNAL_PROCESS
java.lang.String getId()
WorkflowNode
.WorkflowNode
.java.lang.String getType()
WorkflowNode
. Must be unique
across all available types of WorkflowNode
s.WorkflowNode
.void setType(java.lang.String type)
WorkflowNode
. Must be unique across
all available types of WorkflowNode
s.type
- The new type the the WorkflowNode
.java.lang.String getDescription()
WorkflowNode
.WorkflowNode
.void setDescription(java.lang.String description)
WorkflowNode
.description
- The new description of the WorkflowNode
.java.util.List<WorkflowTransition> getTransitions()
WorkflowTransition
s assigned
to the WorkflowNode
.WorkflowTransition
s associated with the
WorkflowNode
(only outgoing).java.util.List<WorkflowTransition> getIncomingTransitions()
WorkflowTransition
s assigned
to the WorkflowNode
.WorkflowTransition
s associated with the
WorkflowNode
(only incoming).java.lang.String getTitle()
WorkflowNode
s title.WorkflowNode
.void setTitle(java.lang.String title)
WorkflowNode
.title
- The new title of the WorkflowNode
.Copyright © 2010 - 2020 Adobe. All Rights Reserved