throw new ConfigurationException("Error adding web.xml to web deployment.", e);
}
}
String getJBossWebXML() throws TemplateException {
FreeMarkerTemplate template = new FreeMarkerTemplate("templates/jboss-web.xml.ftl", WebDeploymentArchive.class);
Map contextObj = new HashMap();
contextObj.put("webModel", webModel);
return template.apply(contextObj);
}