Example usage for org.springframework.jca.cci.connection CciLocalTransactionManager CciLocalTransactionManager

List of usage examples for org.springframework.jca.cci.connection CciLocalTransactionManager CciLocalTransactionManager

Introduction

In this page you can find the example usage for org.springframework.jca.cci.connection CciLocalTransactionManager CciLocalTransactionManager.

Prototype

public CciLocalTransactionManager() 

Source Link

Document

Create a new CciLocalTransactionManager instance.

Usage

From source file:com.spring.jca.tuxedo.ApplicationConfig.java

@Bean
public PlatformTransactionManager transactionManager() {
    CciLocalTransactionManager cciTm = new CciLocalTransactionManager();
    cciTm.setConnectionFactory(tuxedoConnectionFactory());

    return cciTm;
}