Package de.xima.fc.dao.interfaces
Interface IAktionDao
- 
- All Superinterfaces:
 de.xima.cmn.dao.interfaces.IAbstractDao<Aktion,Long,IEntityContext>,IGenericDao<Aktion>
- All Known Implementing Classes:
 AktionDao
@Deprecated public interface IAktionDao extends IGenericDao<Aktion>
Deprecated.This is part of the old workflow, use the new workflow engine. The closest analog to theAktionis aWorkflowNodefrom the new workflow.Data access object for creating, updating, and deletingAktionentities.- Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Aktioncopy(IEntityContext ec, Aktion sourceAktion, Status targetStatus, String targetName)Deprecated.List<Aktion>getAllByProcessingClass(IEntityContext ec, Mandant client, Class<?> processingClass)Deprecated.Returns all actions that have processing of defined by the given processing classList<Aktion>getAllByStatus(IEntityContext ec, Status status)Deprecated.AktiongetByUUID(IEntityContext ec, Status state, String uuid)Deprecated.Returns the action with the given UUIDAktiongetByUUID(IEntityContext ec, Status state, UUID uuid)Deprecated.Returns the action with the given UUIDList<Aktion>getFolgeAktionen(IEntityContext ec, Aktion aktion)Deprecated.List<Aktion>getFolgeAktionen(IEntityContext ec, Status stat, int aktionIdx)Deprecated.List<Aktion>getPrevAktionen(IEntityContext ec, Aktion aktion, Class<?> typeInterface)Deprecated.List<Aktion>getPrevAktionen(IEntityContext ec, Status stat, int aktionIdx, Class<?> verarbeitungsInterface)Deprecated.- 
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
- 
getFolgeAktionen
List<Aktion> getFolgeAktionen(IEntityContext ec, Aktion aktion)
Deprecated. 
- 
getFolgeAktionen
List<Aktion> getFolgeAktionen(IEntityContext ec, Status stat, int aktionIdx)
Deprecated. 
- 
getPrevAktionen
List<Aktion> getPrevAktionen(IEntityContext ec, Aktion aktion, Class<?> typeInterface)
Deprecated. 
- 
getPrevAktionen
List<Aktion> getPrevAktionen(IEntityContext ec, Status stat, int aktionIdx, Class<?> verarbeitungsInterface)
Deprecated. 
- 
getAllByStatus
List<Aktion> getAllByStatus(IEntityContext ec, Status status)
Deprecated. 
- 
getAllByProcessingClass
List<Aktion> getAllByProcessingClass(IEntityContext ec, Mandant client, Class<?> processingClass)
Deprecated.Returns all actions that have processing of defined by the given processing class- Parameters:
 ec-IEntityContextto be usedclient-Mandantto look for actionsprocessingClass-Classof the processing- Returns:
 ListofAktions
 
- 
getByUUID
Aktion getByUUID(IEntityContext ec, Status state, String uuid)
Deprecated.Returns the action with the given UUID- Parameters:
 ec-IEntityContextto usestate-Statuscontext in which to look for resourceuuid-StringUUID of the action- Returns:
 Aktionfor the given UUID and state- Since:
 - 6.1.0
 
 
- 
getByUUID
Aktion getByUUID(IEntityContext ec, Status state, UUID uuid)
Deprecated.Returns the action with the given UUID- Parameters:
 ec-IEntityContextto usestate-Statuscontext in which to look for resourceuuid-UUIDUUID of the action- Returns:
 Aktionfor the given UUID and state- Since:
 - 6.1.0
 
 
- 
copy
Aktion copy(IEntityContext ec, Aktion sourceAktion, Status targetStatus, String targetName)
Deprecated. 
 - 
 
 -