// it notifies the dotted name manager about new MBean appearing
// registering correspondent dotted names
public void notifyRegisterMBean(ObjectName objectName, ConfigContext ctx)
{
try {
MBeanNamingInfo namingInfo = getMBeanNamingInfo(objectName);
ArrayList arr = getValidDottedNames(namingInfo);
if(arr!=null)
for(int i=0; i<arr.size(); i++) //enumerate all dotted names aliases
addDottedName((String)arr.get(i), namingInfo.getObjectName());
//FIXME: only if no XPath -> notifying Lloyd's MBean
} catch (Exception e)
{}
}