Package de.xima.fc.dao.interfaces
Interface IStatusDao
-
- All Superinterfaces:
de.xima.cmn.dao.interfaces.IAbstractDao<Status,Long,IEntityContext>
,IGenericDao<Status>
- All Known Implementing Classes:
StatusDao
@Deprecated public interface IStatusDao extends IGenericDao<Status>
Deprecated.since 7.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Status
copy(IEntityContext ec, Status sourceStatus, String targetName)
Deprecated.List<Status>
getAllByProjekt(IEntityContext ec, Projekt projekt)
Deprecated.List<Status>
getAllForWorkflow(IEntityContext ec, Projekt projekt, Status skipStatus)
Deprecated.Status
getByUUID(IEntityContext ec, Projekt project, String uuid)
Deprecated.Returns the state with the given UUIDStatus
getByUUID(IEntityContext ec, Projekt project, UUID uuid)
Deprecated.Returns the state with the given UUIDList<Status>
getFolgeStatus(IEntityContext ec, Benutzer currentUser, Projekt projekt, Status currentStatus)
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
getEntityRefs, read
-
-
-
-
Method Detail
-
getAllByProjekt
List<Status> getAllByProjekt(IEntityContext ec, Projekt projekt)
Deprecated.
-
getFolgeStatus
List<Status> getFolgeStatus(IEntityContext ec, Benutzer currentUser, Projekt projekt, Status currentStatus)
Deprecated.
-
getAllForWorkflow
List<Status> getAllForWorkflow(IEntityContext ec, Projekt projekt, Status skipStatus)
Deprecated.
-
getByUUID
Status getByUUID(IEntityContext ec, Projekt project, String uuid)
Deprecated.Returns the state with the given UUID- Parameters:
ec
-IEntityContext
to useproject
-Projekt
context in which to look for the stateuuid
-String
UUID of the state- Returns:
Status
for the given UUID and project- Since:
- 6.1.0
-
getByUUID
Status getByUUID(IEntityContext ec, Projekt project, UUID uuid)
Deprecated.Returns the state with the given UUID- Parameters:
ec
-IEntityContext
to useproject
-Projekt
context in which to look for the stateuuid
-UUID
UUID of the state- Returns:
Status
for the given UUID and project- Since:
- 6.1.0
-
copy
Status copy(IEntityContext ec, Status sourceStatus, String targetName)
Deprecated.
-
-