ContentResource resource = (ContentResource)child;
String path = resource.getPath();
// Use JAXB to parse the item
Reader r = new InputStreamReader(resource.getInputStream());
XAppRegistryItem item = XAppRegistryItem.decode(r);
String appName = item.getAppName();
String command = item.getCommand();
X11AppEntry entry = new X11AppEntry(appName, command, path);
String url = "delete&path=" + path + "&appName=" + appName;
entry.addAction(new X11AppAction("delete", url));
entries.add(entry);