}
ModelNode contentItem = new ModelNode();
boolean explodedDeployment = true; // this is here just to keep the code around that deploys if we are unexploded
if (explodedDeployment) {
String urlString = new File(url.toURI()).getAbsolutePath();
if (!(new File(urlString).exists())) {
throw new FileNotFoundException("Missing the EAR at [" + urlString + "]");
}
contentItem.get(PATH).set(urlString);
contentItem.get(ARCHIVE).set(false);