addAttribute(doc,"package",configuration.getPackageName(), rootElement);
addAttribute(doc,"name",boundInterface.getName().getLocalPart()+SERVICE_CLASS_SUFFIX,rootElement);
addAttribute(doc,"callbackname",boundInterface.getName().getLocalPart() + CALL_BACK_HANDLER_SUFFIX,rootElement);
fillSyncAttributes(doc, rootElement);
loadOperations(boundInterface, doc, rootElement);
doc.appendChild(rootElement);
return doc;
}
private void fillSyncAttributes(XmlDocument doc, Element rootElement) {
addAttribute(doc,"isAsync",this.configuration.isAsyncOn()?"1":"0",rootElement);