return null;
String xpath = MBeanHelper.getXPathPattern( (ModelMBeanInfo)m_mbeanInfo) +
ServerXPathHelper.XPATH_SEPARATOR + childName;
Class cl = ConfigMBeanHelper.getConfigBeanClass(xpath);
ConfigBean bean = (ConfigBean)cl.newInstance();
MBeanRegistryEntry regEntry = m_registry.findMBeanRegistryEntryByXPathPattern(xpath);
if(childValues!=null)
for(int i=0; i<childValues.size(); i++)
{
Attribute attr = (Attribute)childValues.get(i);
if( (attr.getValue()==null || attr.getValue().equals("")))
{
//empty value set bypass if not allowed in the registry
boolean bEmptyValueAllowed = false;
try {
// analyze registry_Entry emptyValueAllowed (if mentioned)
bEmptyValueAllowed = regEntry.isAttributeEmptyValueAllowed(attr.getName());
} catch (MBeanMetaException mme)
{
//field not found in registry
}
if(!bEmptyValueAllowed)