result = ConfigBeansFactory.getConfigBeanByXPath(this,configChange.getXPath());
} else if (configChange.getConfigChangeType().equals(ConfigChange.TYPE_DELETE)) {
String xpath = configChange.getXPath();
ConfigBean child = ConfigBeansFactory.getConfigBeanByXPath(this,xpath);
if(child != null) {
result = (ConfigBean) child.parent();
}
} else { // add/set
result = ConfigBeansFactory.getConfigBeanByXPath(this, configChange.getParentXPath());
}
} catch (ConfigException ce) {