Package org.activiti.engine.history
Interface HistoricDetail
-
- All Superinterfaces:
HistoricData
- All Known Subinterfaces:
HistoricDetailAssignmentEntity,HistoricDetailEntity,HistoricDetailTransitionInstanceEntity,HistoricDetailVariableInstanceUpdateEntity,HistoricFormPropertyEntity,HistoricVariableUpdate
- All Known Implementing Classes:
HistoricDetailAssignmentEntityImpl,HistoricDetailEntityImpl,HistoricDetailTransitionInstanceEntityImpl,HistoricDetailVariableInstanceUpdateEntityImpl,HistoricFormPropertyEntityImpl
@Internal public interface HistoricDetail extends HistoricData
Base class for all kinds of information that is related to either aHistoricProcessInstanceor aHistoricActivityInstance.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetActivityInstanceId()The activity reference in case this detail is related to an activity instance.StringgetExecutionId()The identifier for the path of execution.StringgetId()The unique DB id for this historic detailStringgetProcessInstanceId()The process instance reference.StringgetTaskId()The identifier for the task.DategetTime()The time when this detail occurred
-
-
-
Method Detail
-
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:
getTimein interfaceHistoricData
-
-