@MBeanConstructor("Creates the Broker Manager MBean")
protected AMQBrokerManager() throws NotCompliantMBeanException
{
super(ManagedBroker.class, ManagedBroker.TYPE);
IApplicationRegistry appRegistry = ApplicationRegistry.getInstance();
_queueRegistry = appRegistry.getQueueRegistry();
_exchangeRegistry = appRegistry.getExchangeRegistry();
_exchangeFactory = ApplicationRegistry.getInstance().getExchangeFactory();
_messageStore = ApplicationRegistry.getInstance().getMessageStore();
}