public void init(HistoryStore pHistoryStore, DebugStore pDebugStore)
throws MalformedObjectNameException, MBeanRegistrationException, InstanceAlreadyExistsException, NotCompliantMBeanException {
mBeanServerHandler.init();
// Register the Config MBean
Config config = new Config(pHistoryStore,pDebugStore,qualifier,Config.OBJECT_NAME);
mBeanServerHandler.registerMBean(config,config.getObjectName());
// Register another Config MBean (which dispatched to the stores anyway) for access by
// jmx4perl version < 0.80
Config legacyConfig = new Config(pHistoryStore,pDebugStore,qualifier,Config.LEGACY_OBJECT_NAME);
mBeanServerHandler.registerMBean(legacyConfig,legacyConfig.getObjectName());
}