Interface IAktionHandler
-
- All Superinterfaces:
IAPIHandler
,IGenericHandler
,Serializable
- All Known Implementing Classes:
AktionHandler
public interface IAktionHandler extends IGenericHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Aktion>
getAllByStatus(UserContext uc, Status status)
Aktion
getByUUID(UserContext uc, Status state, String uuid)
Returns the action with the given UUIDAktion
getByUUID(UserContext uc, Status state, UUID uuid)
Returns the action with the given UUIDList<Aktion>
getFolgeAktionen(UserContext uc, Aktion aktion)
List<Aktion>
getPrevAktionen(UserContext uc, Aktion aktion, Class<? extends IProcessing> verarbeitungsInterface)
BasicRefResult
isAktionMoveable(UserContext uc, Aktion aktion, int targetIdx)
Aktion
move(UserContext uc, Aktion aktion, int targetIdx)
-
Methods inherited from interface de.xima.fc.com.interfaces.IAPIHandler
getName
-
Methods inherited from interface de.xima.fc.handler.interfaces.entity.IGenericHandler
create, create, delete, delete, deleteBy, deleteById, deleteById, getAll, getAllBy, getAttributes, getAttributes, getBy, getById, getById, getById, getSingleAttributes, getSingleAttributes, resultTotalCount, update, update
-
-
-
-
Method Detail
-
getFolgeAktionen
List<Aktion> getFolgeAktionen(UserContext uc, Aktion aktion)
-
getPrevAktionen
List<Aktion> getPrevAktionen(UserContext uc, Aktion aktion, Class<? extends IProcessing> verarbeitungsInterface)
-
getAllByStatus
List<Aktion> getAllByStatus(UserContext uc, Status status)
-
getByUUID
Aktion getByUUID(UserContext uc, Status state, String uuid)
Returns the action with the given UUID- Parameters:
uc
-UserContext
to usestate
-Status
context in which to look for resourceuuid
-String
UUID of the action- Returns:
Aktion
for the given UUID and state- Since:
- 6.x.x
-
getByUUID
Aktion getByUUID(UserContext uc, Status state, UUID uuid)
Returns the action with the given UUID- Parameters:
uc
-UserContext
to usestate
-Status
context in which to look for resourceuuid
-UUID
UUID of the action- Returns:
Aktion
for the given UUID and state- Since:
- 6.x.x
-
isAktionMoveable
BasicRefResult isAktionMoveable(UserContext uc, Aktion aktion, int targetIdx)
-
move
Aktion move(UserContext uc, Aktion aktion, int targetIdx)
-
-