if (configObject instanceof ConfigSetImpl) {
configAdd = (ConfigSetImpl) configObject;
xpath = configAdd.getXPath();
} else if (configObject instanceof ConfigAddImpl) {
ConfigAddImpl cad = (ConfigAddImpl) configObject;
xpath = cad.getXPath();
}else if(configObject instanceof ConfigUpdateImpl){
ConfigUpdateImpl cad = (ConfigUpdateImpl) configObject;
xpath = cad.getXPath();
}else if(configObject instanceof ConfigDeleteImpl){
ConfigDeleteImpl cad = (ConfigDeleteImpl) configObject;
xpath = cad.getXPath();
}
//object = configContext.exactLookup(xpath);
String id = getIdFromXpath(xpath);
if (id == null) {
continue;