public interface CmmnHistoryService
| Modifier and Type | Method and Description |
|---|---|
HistoricCaseInstanceQuery |
createHistoricCaseInstanceQuery() |
HistoricMilestoneInstanceQuery |
createHistoricMilestoneInstanceQuery() |
HistoricTaskInstanceQuery |
createHistoricTaskInstanceQuery() |
HistoricVariableInstanceQuery |
createHistoricVariableInstanceQuery() |
void |
deleteHistoricCaseInstance(String caseInstanceId) |
void |
deleteHistoricTaskInstance(String taskId)
Deletes historic task instance.
|
List<org.flowable.identitylink.api.history.HistoricIdentityLink> |
getHistoricIdentityLinksForCaseInstance(String processInstanceId)
Retrieves the
HistoricIdentityLinks associated with the given case instance. |
List<org.flowable.identitylink.api.history.HistoricIdentityLink> |
getHistoricIdentityLinksForTask(String taskId)
Retrieves the
HistoricIdentityLinks associated with the given task. |
HistoricCaseInstanceQuery createHistoricCaseInstanceQuery()
HistoricMilestoneInstanceQuery createHistoricMilestoneInstanceQuery()
HistoricVariableInstanceQuery createHistoricVariableInstanceQuery()
HistoricTaskInstanceQuery createHistoricTaskInstanceQuery()
void deleteHistoricCaseInstance(String caseInstanceId)
void deleteHistoricTaskInstance(String taskId)
dynamically created and then completed. If the
historic task instance doesn't exist, no exception is thrown and the method returns normal.List<org.flowable.identitylink.api.history.HistoricIdentityLink> getHistoricIdentityLinksForTask(String taskId)
HistoricIdentityLinks associated with the given task. Such an IdentityLink informs how a certain identity (eg. group or user) is associated with a certain task
(eg. as candidate, assignee, etc.), even if the task is completed as opposed to IdentityLinks which only exist for active tasks.List<org.flowable.identitylink.api.history.HistoricIdentityLink> getHistoricIdentityLinksForCaseInstance(String processInstanceId)
HistoricIdentityLinks associated with the given case instance. Such an IdentityLink informs how a certain identity (eg. group or user) is associated with a
certain case instance, even if the instance is completed as opposed to IdentityLinks which only exist for active instances.Copyright © 2018 Flowable. All rights reserved.