Example usage for org.hibernate.engine.transaction.jta.platform.internal AbstractJtaPlatform subclass-usage

List of usage examples for org.hibernate.engine.transaction.jta.platform.internal AbstractJtaPlatform subclass-usage

Introduction

In this page you can find the example usage for org.hibernate.engine.transaction.jta.platform.internal AbstractJtaPlatform subclass-usage.

Usage

From source file act.db.hibernate.ActJtaPlatform.java

public class ActJtaPlatform extends AbstractJtaPlatform {
    @Override
    protected TransactionManager locateTransactionManager() {
        return null;
    }

From source file com.hack23.cia.service.data.impl.AtomikosJtaPlatform.java

/**
 * The Class AtomikosJtaPlatform.
 */
public final class AtomikosJtaPlatform extends AbstractJtaPlatform {

    /** The Constant serialVersionUID. */

From source file com.quakearts.webapp.hibernate.appbase.AppBaseJTAPlatform.java

public class AppBaseJTAPlatform extends AbstractJtaPlatform {

    /**
     * 
     */
    private static final long serialVersionUID = -6806488231557983385L;

From source file com.souschef.hibernate.WebSphereExtendedJtaPlatform.java

/**
 * JTA platform implementation intended for use with WebSphere Application Server (WAS).
 * <p/>
 * WAS, unlike every other app server on the planet, does not allow direct access to the JTS TransactionManager.
 * Instead, for common transaction-related tasks users must utilize a proprietary API known as ExtendedJTATransaction.
 * <p/>

From source file nz.co.senanque.hibernate.SpringJtaPlatformAdapter.java

/**
 * Needed to get Hibernate and Atomikos to work together
 * see  <a href="http://stackoverflow.com/questions/20681245/how-to-use-atomikos-transaction-essentials-with-hibernate-4-3">how-to-use-atomikos-transaction-essentials-with-hibernate-4-3</a>
 * @author Roger Parkinson
 *
 */

From source file org.bonitasoft.engine.test.TomeeJtaPlatform.java

/**
 * @author Baptiste Mesta
 */
public class TomeeJtaPlatform extends AbstractJtaPlatform {

    private static final long serialVersionUID = 4893085097625997082L;

From source file org.csc.phynixx.spring.integration.atomikos.AtomikosJtaPlatform.java

/**
 * see http://stackoverflow.com/questions/20681245/how-to-use-atomikos-transaction-essentials-with-hibernate-4-3
 */
public class AtomikosJtaPlatform extends AbstractJtaPlatform {

    private static final long serialVersionUID = 1L;

From source file org.efaps.bpm.transaction.EFapsJTAPlatform.java

/**
 * Hibernate implementation for using JTA.
 *
 * @author The eFaps Team
 *
 */

From source file org.jadira.usertype.spi.jta.LocalTransactionManagerPlatform.java

/**
 * This is a generally useful implementation of Hibernate's JtaPlatform which delegates to a configurable Spring PlatformTransactionManager instance.
 * 
 * To use this class set the Hibernate / JTA property 'hibernate.transaction.jta.platform' to org.jadira.usertype.spi.jta.LocalTransactionManagerPlatform.
 * 
 * In addition this class must be used in conjunction with either {@link HibernateSessionFactoryBean} or {@link HibernateEntityManagerFactoryBean}. These are specialised subclasses of

From source file org.jbpm.test.container.webspherefix.WebSphereFixedJtaPlatform.java

/**
 * Workaroud for https://hibernate.atlassian.net/browse/HHH-11606 .
 */
public class WebSphereFixedJtaPlatform extends AbstractJtaPlatform {

    private static final long serialVersionUID = 1L;