Package org.hibernate.search.test.integration.jbossjta.infra

Examples of org.hibernate.search.test.integration.jbossjta.infra.JBossTADataSourceBuilder


    underlyingDataSource.setURL( url );
    underlyingDataSource.setUser( user );
    underlyingDataSource.setPassword( password );

    //build JBoss-bound DataSource
    DataSource ds = new JBossTADataSourceBuilder()
        .setXADataSource( underlyingDataSource )
        .setUser( user )
        .setPassword( password )
        .setTimeout( 0 ) //infinite transaction
        .createDataSource();
View Full Code Here

TOP

Related Classes of org.hibernate.search.test.integration.jbossjta.infra.JBossTADataSourceBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.