Example #1
0
 public SpringTransactionInterceptor(PlatformTransactionManager transactionManager, int transactionPropagation)
 {
     this.transactionManager     = transactionManager;
     this.transactionPropagation = transactionPropagation;
 }
Example #2
0
 public SpringTransactionContextFactory(PlatformTransactionManager transactionManager)
 {
     this.transactionManager = transactionManager;
 }
Example #3
0
 public SpringTransactionContext(PlatformTransactionManager transactionManager, CommandContext commandContext)
 {
     this.transactionManager = transactionManager;
     this.commandContext     = commandContext;
     TransactionSynchronizationManager.registerSynchronization(new TransactionSynchronizationAdapterAnonymousInnerClass(this));
 }