*/
if (configuration.isXaTransactional()) {
SoftLockFactory softLockFactory = cacheManager.createSoftLockFactory(this);
LocalTransactionStore localTransactionStore = new LocalTransactionStore(getCacheManager().getTransactionController(),
softLockFactory, this, store, copyStrategy);
this.compoundStore = new JtaLocalTransactionStore(localTransactionStore, transactionManagerLookup,
cacheManager.getTransactionController());
} else if (configuration.isLocalTransactional()) {
SoftLockFactory softLockFactory = cacheManager.createSoftLockFactory(this);
this.compoundStore = new LocalTransactionStore(getCacheManager().getTransactionController(), softLockFactory, this, store,
copyStrategy);