JettyWebAppDocument jettyWebAppDoc = JettyWebAppDocument.Factory.newInstance();
JettyWebAppType webApp = jettyWebAppDoc.addNewWebApp();
webApp.setConfigId("configId");
webApp.setParentId("parentId");
webApp.setContextPriorityClassloader(false);
GerResourceRefType ref = webApp.addNewResourceRef();
ref.setRefName("ref");
ref.setTargetName("target");
SchemaConversionUtils.validateDD(webApp);
System.out.println(webApp.toString());