bundleFile = new File(target, appRequestHandler.createRequest(UNVERSIONED_BUNDLE_REQUEST, aspectRequestPrefix, contentPath));
} else {
bundleFile = new File(target, appRequestHandler.createRequest(BUNDLE_REQUEST, aspectRequestPrefix, version, contentPath));
}
ParsedContentPath parsedContentPath = contentPlugin.getContentPathParser().parse(contentPath);
bundleFile.getParentFile().mkdirs();
bundleFile.createNewFile();
try (FileOutputStream bundleFileOutputStream = new FileOutputStream(bundleFile);
ResponseContent pluginContent = contentPlugin.handleRequest(parsedContentPath, bundleSet, contentPluginUtility, version); )
{