client = new ResourceServiceClient(cookie, config, request.getSession());
} catch (Exception e) {
String msg = "Failed to initialize the resource service client " +
"to get resource tree data. " + e.getMessage();
log.error(msg, e);
throw new UIException(msg, e);
}
String textBoxId = request.getParameter("textBoxId");
try {
ResourceTreeData resourceTreeData = new ResourceTreeData();
fillSubResourceTree(resourcePath, resourceTreeData, client,textBoxId, parentId,
request.getParameter("hideResources") != null);
String displayHTML = "";
displayHTML += resourceTreeData.getResourceTree();
return displayHTML;
} catch (RegistryException e) {
String msg = "Failed to generate the resource tree for the resource " +
resourcePath + ". " + e.getMessage();
log.error(msg, e);
throw new UIException(msg, e);
}
}