Package es.twentymobile.mule.modules.jpa.xa

Examples of es.twentymobile.mule.modules.jpa.xa.JpaXaResource


        Object r;
        if (tx instanceof XaTransaction) {
          if (isUnmanagedPoolAndOpenJpa) {
            r = new JpaXaResourceForTomcatAndOpenJpa(entityManager);
          } else {
            r = new JpaXaResource(entityManager);
          }
        } else {
          r = entityManager;
        }
        tx.bindResource(entityManagerFactory, r);
View Full Code Here

TOP

Related Classes of es.twentymobile.mule.modules.jpa.xa.JpaXaResource

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.