public static ResponseContent handle(BundleSet bundleSet, String logicalRequestpath, UrlContentAccessor contentAccessor, String version) throws MalformedRequestException, ResourceNotFoundException, ContentProcessingException {
BundlableNode bundlableNode = bundleSet.getBundlableNode();
App app = bundlableNode.app();
Logger logger = app.root().logger(BundleSetRequestHandler.class);
logger.debug(Messages.REQUEST_HANDLED_MSG, logicalRequestpath, app.getName());
String name = (bundlableNode instanceof NamedNode) ? ((NamedNode) bundlableNode).getName() : "default";
logger.debug(Messages.CONTEXT_IDENTIFIED_MSG, bundlableNode.getTypeName(), name, logicalRequestpath);
ContentPlugin contentProvider = app.root().plugins().contentPluginForLogicalPath(logicalRequestpath);