Package de.xima.fc.workflow.model.nodes
Class FcQueueTaskProps
- java.lang.Object
-
- de.xima.fc.workflow.taglib.model.BaseActionProps
-
- de.xima.fc.workflow.model.nodes.FcQueueTaskProps
-
- All Implemented Interfaces:
IDescriptionProviding
,INameProviding
,Serializable
public final class FcQueueTaskProps extends BaseActionProps implements Serializable
Model class for the state change workflow action (EWorkflowNodeType.FC_QUEUE_TASK
).- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class de.xima.fc.workflow.taglib.model.BaseActionProps
BaseActionProps.name
-
-
Field Summary
-
Fields inherited from interface de.xima.fc.entities.interfaces.IDescriptionProviding
ATTR_BESCHREIBUNG, ATTR_DESCRIPTION, COL_DESCRIPTION
-
Fields inherited from interface de.xima.fc.entities.interfaces.INameProviding
ATTR_NAME, COL_NAME
-
-
Constructor Summary
Constructors Constructor Description FcQueueTaskProps()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TriggerKey
getTriggerToInvoke()
boolean
isAddToEnd()
void
setAddToEnd(boolean addToEnd)
void
setTriggerToInvoke(TriggerKey triggerToInvoke)
-
Methods inherited from class de.xima.fc.workflow.taglib.model.BaseActionProps
getBeschreibung, getColor, getDescription, getIcon, getName, setColor, setDescription, setIcon, setName
-
-
-
-
Method Detail
-
getTriggerToInvoke
public TriggerKey getTriggerToInvoke()
- Returns:
- Key of the trigger to add to the queue.
-
isAddToEnd
public boolean isAddToEnd()
- Returns:
true
to add the task to the end of the task queue.false
to add it after the current task.
-
setAddToEnd
public void setAddToEnd(boolean addToEnd)
- Parameters:
addToEnd
-true
to add the task to the end of the task queue.false
to add it after the current task.
-
setTriggerToInvoke
public void setTriggerToInvoke(TriggerKey triggerToInvoke)
- Parameters:
triggerToInvoke
- Key of the trigger to add to the queue.
-
-