public TransactionStore createTransactionStore() throws JMSException {
if (adapter == null) {
throw new IllegalStateException("Not started");
}
if( this.transactionStore == null ) {
this.transactionStore = new VMTransactionStore();
}
return this.transactionStore;
}