public Map getInitialDestinations() {
return longTermPersistence.getInitialDestinations();
}
public MessageStore createQueueMessageStore(String destinationName) throws JMSException {
MessageStore checkpointStore = longTermPersistence.createQueueMessageStore(destinationName);
JournalMessageStore store = new JournalMessageStore(this, checkpointStore, destinationName, sync);
messageStores.put(destinationName, store);
return store;
}