return status;
ManifestParseTree manifest = parseManifestCommand.getManifest();
Manifest resp = new Manifest(manifest);
return new ServerStatus(Status.OK_STATUS, HttpServletResponse.SC_OK, resp.toJSON());
} catch (Exception e) {
String msg = NLS.bind("Failed to handle request for {0}", path); //$NON-NLS-1$
ServerStatus status = new ServerStatus(IStatus.ERROR, HttpServletResponse.SC_INTERNAL_SERVER_ERROR, msg, e);
logger.error(msg, e);