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 java.lang.StringgetActivityInstanceId()The activity reference in case this detail is related to an activity instance.java.lang.StringgetExecutionId()The identifier for the path of execution.java.lang.StringgetId()The unique DB id for this historic detailjava.lang.StringgetProcessInstanceId()The process instance reference.java.lang.StringgetTaskId()The identifier for the task.java.util.DategetTime()The time when this detail occurred
-
-
-
Method Detail
-
getId
java.lang.String getId()
The unique DB id for this historic detail
-
getProcessInstanceId
java.lang.String getProcessInstanceId()
The process instance reference.
-
getActivityInstanceId
java.lang.String getActivityInstanceId()
The activity reference in case this detail is related to an activity instance.
-
getExecutionId
java.lang.String getExecutionId()
The identifier for the path of execution.
-
getTaskId
java.lang.String getTaskId()
The identifier for the task.
-
getTime
java.util.Date getTime()
The time when this detail occurred- Specified by:
getTimein interfaceHistoricData
-
-