Package de.xima.fc.entities
Class WorkflowProcess
java.lang.Object
de.xima.cmn.dao.model.AEntity<Long>
de.xima.fc.entities.AbstractEntity
de.xima.fc.entities.AbstractLockableEntity
de.xima.fc.entities.WorkflowProcess
- All Implemented Interfaces:
de.xima.cmn.dao.interfaces.IEntity<Long>
,de.xima.cmn.dao.interfaces.ILockableEntity<Long>
,ILockingVersionProviding
,ITransferable
,ITransferableEntity
,ITransferableLockableEntity
,IUUIDEntity
,Serializable
,Comparable<de.xima.cmn.dao.interfaces.IEntity<Long>>
A workflow process that defines which actions are taken when certain events occur during the life cycle of a form
record. A workflow process always belong to a
WorkflowVersion
. Each project may have multiple versions of a
workflow process, and one active version.
A process consists of one or more workflow tasks, usually one task for each event (such as submitting the form, or changing the form record's state).
- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
JPA attribute name for thegetTasks()
field.static final String
JPA attribute name for thegetVersion()
field.static final String
Database column name for thegetVersion()
field.Fields inherited from class de.xima.fc.entities.AbstractLockableEntity
COL_LOCKINGVERSION, lockingVersion
Fields inherited from class de.xima.fc.entities.AbstractEntity
COL_ID, id
Fields inherited from interface de.xima.cmn.dao.interfaces.IEntity
ATTR_ID
Fields inherited from interface de.xima.cmn.dao.interfaces.ILockableEntity
ATTR_LOCKINGVERSION
Fields inherited from interface de.xima.fc.entities.interfaces.ITransferableEntity
IMPORT_ID, INVALID_ID
Fields inherited from interface de.xima.fc.entities.interfaces.IUUIDEntity
ATTR_UUID, COL_UUID, INVALID_UUID, INVALID_UUID_OBJECT, NULL_SAFE_UUID_TYPE, TYPE_NAME_UUID
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addTask
(WorkflowTask task) Adds the given task to this process and sets theWorkflowTask.getProcess()
to this process.getId()
getTasks()
getUUID()
void
setTasks
(List<WorkflowTask> tasks) void
void
setUUIDObject
(UUID uuid) void
setVersion
(WorkflowVersion version) Methods inherited from class de.xima.fc.entities.AbstractLockableEntity
entityHasChanged, getLockingVersion, setLockingVersion, toString
Methods inherited from class de.xima.fc.entities.AbstractEntity
asIntValue, isPersisted, setId, setId
Methods inherited from class de.xima.cmn.dao.model.AEntity
compareTo, equals, getDBTableName, hashCode
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Comparable
compareTo
Methods inherited from interface de.xima.cmn.dao.interfaces.IEntity
isPersisted, setId
-
Field Details
-
ATTR_TASKS
JPA attribute name for thegetTasks()
field.- See Also:
-
ATTR_VERSION
JPA attribute name for thegetVersion()
field.- See Also:
-
COL_VERSION
Database column name for thegetVersion()
field.- See Also:
-
-
Constructor Details
-
WorkflowProcess
public WorkflowProcess()
-
-
Method Details
-
addTask
Adds the given task to this process and sets theWorkflowTask.getProcess()
to this process.- Parameters:
task
- The task to add.
-
getId
- Specified by:
getId
in interfacede.xima.cmn.dao.interfaces.IEntity<Long>
-
getTasks
- Returns:
- A list of tasks that indicate which actions are executed when certain events occur during the life cycle of a form record.
-
getUUID
- Specified by:
getUUID
in interfaceIUUIDEntity
- Returns:
- UUID (Universal Unique Identifier) that identifies this type of entity. Usually is unique within a
context, e.g.
Mandant
,Projekt
, ...
-
getUUIDObject
- Specified by:
getUUIDObject
in interfaceIUUIDEntity
- Returns:
- A unique identifier of this workflow task. This ID must be unique at least among all other processes that
belong to the same
WorkflowVersion
.
-
getVersion
- Returns:
- The version to which this workflow process belongs, see
WorkflowVersion.getMainProcess()
.
-
setTasks
- Parameters:
tasks
- A list of tasks that indicate which actions are executed when certain events occur during the life cycle of a form record.
-
setUUID
- Specified by:
setUUID
in interfaceIUUIDEntity
-
setUUIDObject
- Parameters:
uuid
- A unique identifier of this workflow task. This ID must be unique at least among all other tasks that belong to the sameWorkflowProcess
.
-
setVersion
- Parameters:
version
- The version to which this workflow process belongs.
-
cloneBasics
- Returns:
- A new process instance with all fields that do not reference other entities copied from this instance.
-