Package de.xima.fc.dao.interfaces
Interface IWorkflowProcessDao
-
- All Superinterfaces:
de.xima.cmn.dao.interfaces.IAbstractDao<WorkflowProcess,Long,IEntityContext>
,IGenericDao<WorkflowProcess>
- All Known Implementing Classes:
WorkflowProcessDao
public interface IWorkflowProcessDao extends IGenericDao<WorkflowProcess>
Data access object for creating, updating, and deletingWorkflowProcess
entities.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkflowProcess
loadMainProcess(IEntityContext ec, WorkflowVersion workflowVersion)
Fetches the main process of the given workflow version of the given project.-
Methods inherited from interface de.xima.cmn.dao.interfaces.IAbstractDao
all, bulkDelete, bulkUpdate, checkLockingVersion, create, create, delete, delete, deleteAll, executePagedDaoAction, getAttributes, getAttributes, getSingleAttributes, getSingleAttributes, getTransactionHandler, read, registerListener, registerListener, registerListener, resultTotalCount, setTransactionHandler, singleElement, unregisterListener, unregisterListener, unregisterListener, update, update
-
Methods inherited from interface de.xima.fc.dao.interfaces.IGenericDao
count, findAll, findSingle, getEntityRefs, read
-
-
-
-
Method Detail
-
loadMainProcess
WorkflowProcess loadMainProcess(IEntityContext ec, WorkflowVersion workflowVersion)
Fetches the main process of the given workflow version of the given project.- Parameters:
ec
- Entity context to use.workflowVersion
- Workflow version for which to load the main process.- Returns:
- The
WorkflowVersion.getMainProcess()
of the given workflow version.
-
-