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

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

Introduction

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

Prototype

public void setConnectionFactory(@Nullable ConnectionFactory connectionFactory) 

Source Link

Document

Set the CCI ConnectionFactory to obtain Connections from.

Usage

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

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

    return ct;/*from ww w .ja  v a 2 s.  c om*/
}