Example usage for org.springframework.jca.cci.core CciTemplate CciTemplate

List of usage examples for org.springframework.jca.cci.core CciTemplate CciTemplate

Introduction

In this page you can find the example usage for org.springframework.jca.cci.core CciTemplate CciTemplate.

Prototype

public CciTemplate() 

Source Link

Document

Construct a new CciTemplate for bean usage.

Usage

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

@Bean
public CciTemplate tuxedoCciTemplate() {
    CciTemplate ct = new CciTemplate();
    ct.setConnectionFactory(tuxedoConnectionFactory());

    return ct;
}