utilizationReport.setEndTime(end);
return utilizationReport;
}
private UtilizationReport queryFromDailyBinary(int id, String domain) throws DalException {
DailyReportContent content = m_dailyReportContentDao.findByPK(id, DailyReportContentEntity.READSET_FULL);
if (content != null) {
return DefaultNativeParser.parse(content.getContent());
} else {
return new UtilizationReport(domain);
}
}