return links;
}
protected Map<String, String> getResourceLinks(List<Dom> proxyList) {
Map<String, String> links = new TreeMap<String, String>();
Collections.sort(proxyList, new DomConfigurator());
for (Dom proxy : proxyList) { //for each element
try {
links.put(proxy.getKey(), getElementLink(uriInfo.get(), proxy.getKey()));
} catch (Exception e) {
throw new RuntimeException(e);