public interface CmmnHistoryService
HistoricCaseInstanceQuery createHistoricCaseInstanceQuery()
HistoricMilestoneInstanceQuery createHistoricMilestoneInstanceQuery()
HistoricVariableInstanceQuery createHistoricVariableInstanceQuery()
HistoricTaskInstanceQuery createHistoricTaskInstanceQuery()
HistoricPlanItemInstanceQuery createHistoricPlanItemInstanceQuery()
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 caseInstanceId)
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.List<HistoricEntityLink> getHistoricEntityLinkChildrenForCaseInstance(String caseInstanceId)
HistoricEntityLinks associated with the given case instance.List<HistoricEntityLink> getHistoricEntityLinkParentsForCaseInstance(String caseInstanceId)
HistoricEntityLinks where the given case instance is referenced.void deleteHistoricTaskLogEntry(long logNumber)
logNumber - user task log entry identifierHistoricTaskLogEntryBuilder createHistoricTaskLogEntryBuilder(TaskInfo task)
task - to which is log related toHistoricTaskLogEntryBuilder createHistoricTaskLogEntryBuilder()
HistoricTaskLogEntryQuery createHistoricTaskLogEntryQuery()
HistoricTaskLogEntryQuery that can be used to dynamically query task log entries.NativeHistoricTaskLogEntryQuery createNativeHistoricTaskLogEntryQuery()
NativeHistoricTaskLogEntryQuery for HistoricTaskLogEntrys.Copyright © 2019 Flowable. All rights reserved.