//enumerate all constructors
Constructor[] ctrs = configuringMBeanClass.getConstructors();
MBeanConstructorInfo[] infos = new MBeanConstructorInfo[ctrs.length];
for(int i=0; i<ctrs.length; i++)
{
infos[i] = new MBeanConstructorInfo(constructorDescr, ctrs[i]);
}
return infos;
}