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

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


      log.debug("Binding session to current transaction");
      try {
        Object r;
        if (tx instanceof XaTransaction) {
          if (isUnmanagedPoolAndOpenJpa) {
            r = new JpaXaResourceForTomcatAndOpenJpa(entityManager);
          } else {
            r = new JpaXaResource(entityManager);
          }
        } else {
          r = entityManager;
View Full Code Here

TOP

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

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.