Collections.sort(sqlServices, new ServiceComparator());
model.setSqlUrls(sqlUrls);
model.setSqlServices(sqlServices);
}
HeavyCache heavyCache = heavyReport.getHeavyCache();
if (heavyCache != null) {
List<Url> cacheUrls = new ArrayList<Url>(heavyCache.getUrls().values());
List<Service> cacheServices = new ArrayList<Service>(heavyCache.getServices().values());
Collections.sort(cacheUrls, new UrlComparator());
Collections.sort(cacheServices, new ServiceComparator());
model.setCacheUrls(cacheUrls);
model.setCacheServices(cacheServices);
}