Package org.jboss.jca.core.connectionmanager.xa

Examples of org.jboss.jca.core.connectionmanager.xa.LocalXAResource


   {
      XAResource xaResource = null;
     
      if (localTransactions)
      {
         xaResource = new LocalXAResource(this);
   
         if (xaResourceTimeout != 0)
         {
            getLog().debug("XAResource transaction timeout cannot be set for local transactions: " + getJndiName())
         }
View Full Code Here


   {
      XAResource xaResource = null;
     
      if (this.localTransactions)
      {
         xaResource = new LocalXAResource(this);
   
         if (xaResourceTimeout != 0)
         {
            getLog().debug("XAResource transaction timeout cannot be set for local transactions: " + getJndiName())
         }
View Full Code Here

TOP

Related Classes of org.jboss.jca.core.connectionmanager.xa.LocalXAResource

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.