use of org.camunda.bpm.engine.rest.dto.history.ReportResultDto in project camunda-bpm-platform by camunda.
the class HistoricProcessInstanceRestServiceImpl method getReportResultAsJson.
protected List<ReportResultDto> getReportResultAsJson(UriInfo uriInfo) {
List<ReportResult> reports = queryHistoricProcessInstanceReport(uriInfo);
List<ReportResultDto> result = new ArrayList<ReportResultDto>();
for (ReportResult report : reports) {
result.add(ReportResultDto.fromReportResult(report));
}
return result;
}
Aggregations