public DependencyReport queryDailyReport(String domain, Date start, Date end) {
throw new UnsupportedOperationException("Dependency report don't support daily report");
}
private DependencyReport queryFromHourlyBinary(int id, String domain) throws DalException {
HourlyReportContent content = m_hourlyReportContentDao.findByPK(id, HourlyReportContentEntity.READSET_FULL);
if (content != null) {
return DefaultNativeParser.parse(content.getContent());
} else {
return new DependencyReport(domain);
}
}