Query detailsQuery = entityManager.createQuery(query);
detailsQuery.setParameter("puid", puid);
Format format = (Format) detailsQuery.getSingleResult();
groupByPuidSizeAndCountRow.setFormatName(format.getName());
groupByPuidSizeAndCountRow
.setFormatVersion(format.getVersion());
groupByPuidSizeAndCountRow.setMimeType(format.getMimeType());
dataList.add(groupByPuidSizeAndCountRow);
}
}