/* 249 */ this.messageIDManager = new IDManager("MESSAGE_ID", 4096, this.persistenceManager);
/* 250 */ this.channelIDManager = new IDManager("CHANNEL_ID", 10, this.persistenceManager);
/* 251 */ this.transactionIDManager = new IDManager("TRANSACTION_ID", 1024, this.persistenceManager);
/* 252 */ this.destinationJNDIMapper = new DestinationJNDIMapper(this);
/* 253 */ this.connFactoryJNDIMapper = new ConnectionFactoryJNDIMapper(this);
/* 254 */ this.connectionManager = new SimpleConnectionManager();
/* 255 */ this.connectorManager = new SimpleConnectorManager();
/* 256 */ this.memoryManager = new SimpleMemoryManager();
/* 257 */ this.messageStore = new SimpleMessageStore();
/* 258 */ this.txRepository = new TransactionRepository(this.persistenceManager, this.messageStore, this.transactionIDManager);
/* */