Search in sources :

Example 1 with EventDataValueRowCallbackHandler

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();
}
Also used : EventDataValueRowCallbackHandler(org.hisp.dhis.dxf2.events.trackedentity.store.mapper.EventDataValueRowCallbackHandler)

Aggregations

EventDataValueRowCallbackHandler (org.hisp.dhis.dxf2.events.trackedentity.store.mapper.EventDataValueRowCallbackHandler)1