@Path("{blobId}")
public EditorView blobEditor(@PathParam("blobId") ObjectId blobId) {
try {
DBObject object = blobManager.read(blobId);
Object blob = object.get("blob");
EditorView view = new EditorView(gaConfig.getWebPropertyID(), "editor", gaConfig.getCustomTrackingCodes());
view.setBlobId(blobId.toString());
view.setJsonBlob(blob.toString());
return view;
} catch (BlobNotFoundException e) {
throw new NotFoundException();
}
}