} else {
dc.setSQL("SELECT inode, url_map_pattern from structure where url_map_pattern is not null and url_map_pattern <> '' order by url_map_pattern desc");
}
List<Map<String, String>> rows = dc.loadResults();
for (Map<String, String> row : rows) {
res.add(new SimpleStructureURLMap(row.get("inode"), row.get("url_map_pattern")));
}
return res;
}