Package org.flowable.engine.history
Interface HistoricDetail
- All Superinterfaces:
org.flowable.common.engine.api.history.HistoricData
- All Known Subinterfaces:
HistoricFormProperty
,HistoricVariableUpdate
public interface HistoricDetail
extends org.flowable.common.engine.api.history.HistoricData
Base class for all kinds of information that is related to either a
HistoricProcessInstance
or a HistoricActivityInstance
.- Author:
- Tom Baeyens
-
Method Summary
Modifier and TypeMethodDescriptionThe activity reference in case this detail is related to an activity instance.The identifier for the path of execution.getId()
The unique DB id for this historic detailThe process instance reference.The identifier for the task.getTime()
The time when this detail occurred
-
Method Details
-
getId
String getId()The unique DB id for this historic detail -
getProcessInstanceId
String getProcessInstanceId()The process instance reference. -
getActivityInstanceId
String getActivityInstanceId()The activity reference in case this detail is related to an activity instance. -
getExecutionId
String getExecutionId()The identifier for the path of execution. -
getTaskId
String getTaskId()The identifier for the task. -
getTime
Date getTime()The time when this detail occurred- Specified by:
getTime
in interfaceorg.flowable.common.engine.api.history.HistoricData
-