/**
* For performance boosting, we get now all the table recordCounts out
* from ONE Service Call and get back the results in a map.
*/
CommonService service = (CommonService) SpringUtil.getBean("commonService");
final Map<String, Object> map = service.getAllTablesRecordCounts();
if (map.containsKey("HibernateStatistics")) {
addNewRow(rows, Labels.getLabel("table.hibernate_entity_statistics"), map.get("HibernateStatistics"));
}
if (map.containsKey("Customer")) {