use of org.activiti.engine.history.HistoricVariableInstance in project tutorials-java by Artister.
the class ConfigHistoryLevelTests method showHistoryVariable.
private void showHistoryVariable() {
List<HistoricVariableInstance> historicVariableInstances = activitiRule.getHistoryService().createHistoricVariableInstanceQuery().list();
for (HistoricVariableInstance historicVariableInstance : historicVariableInstances) {
logger.info("historicVariableInstance = {}", historicVariableInstance);
}
logger.info("historicVariableInstances.size = {}", historicVariableInstances.size());
}
Aggregations