use of org.camunda.bpm.engine.impl.persistence.entity.HistoricJobLogEventEntity in project camunda-bpm-platform by camunda.
the class BulkHistoryDeleteTest method findExceptionByteArrayIds.
private List<String> findExceptionByteArrayIds() {
List<String> exceptionByteArrayIds = new ArrayList<String>();
List<HistoricJobLog> historicJobLogs = historyService.createHistoricJobLogQuery().list();
for (HistoricJobLog historicJobLog : historicJobLogs) {
HistoricJobLogEventEntity historicJobLogEventEntity = (HistoricJobLogEventEntity) historicJobLog;
if (historicJobLogEventEntity.getExceptionByteArrayId() != null) {
exceptionByteArrayIds.add(historicJobLogEventEntity.getExceptionByteArrayId());
}
}
return exceptionByteArrayIds;
}
Aggregations