use of org.hisp.dhis.dxf2.events.trackedentity.store.mapper.EventDataValueRowCallbackHandler in project dhis2-core by dhis2.
the class DefaultEventStore method getDataValuesPartitioned.
private Map<String, List<DataValue>> getDataValuesPartitioned(List<Long> programStageInstanceId) {
EventDataValueRowCallbackHandler handler = new EventDataValueRowCallbackHandler();
jdbcTemplate.query(GET_DATAVALUES_SQL, createIdsParam(programStageInstanceId), handler);
return handler.getItems();
}
Aggregations