Interface HistoricWorkObjectService
- All Known Implementing Classes:
HistoricWorkObjectServiceImpl
public interface HistoricWorkObjectService
- Author:
- martin.grofcik
-
Method Summary
Modifier and Type Method Description HistoricWorkObjectQuery
createHistoricWorkObjectQuery()
Creates a newHistoricWorkObjectQuery
instance, that can be used to queryHistoricWorkObject
java.util.List<org.flowable.identitylink.api.history.HistoricIdentityLink>
getHistoricIdentityLinksForWorkObject(java.lang.String workObjectId)
Retrieves theHistoricIdentityLink
s associated with the given task.
-
Method Details
-
createHistoricWorkObjectQuery
HistoricWorkObjectQuery createHistoricWorkObjectQuery()Creates a newHistoricWorkObjectQuery
instance, that can be used to queryHistoricWorkObject
-
getHistoricIdentityLinksForWorkObject
java.util.List<org.flowable.identitylink.api.history.HistoricIdentityLink> getHistoricIdentityLinksForWorkObject(java.lang.String workObjectId)Retrieves theHistoricIdentityLink
s associated with the given task. Such anIdentityLink
informs how a certain identity (eg. group or user) is associated with a certainWorkObject
(eg. as candidate, assignee, etc.), even if theWorkObject
is completed as opposed toIdentityLink
s which only exist for active WorkObject.
-