Package org.apache.geronimo.jee.connector

Examples of org.apache.geronimo.jee.connector.Xatransaction


        singlePool.setMaxSize(new Integer(0));
        singlePool.setMinSize(new Integer(0));
        singlePool.setSelectOneAssumeMatch(empty);
        connectionManager.setPartitionedPool(partitionedPool);
        connectionManager.setSinglePool(singlePool);
        Xatransaction xaTransaction = connectorFactory.createXatransaction();
        xaTransaction.setThreadCaching(empty);
        xaTransaction.setTransactionCaching(empty);
        connectionManager.setXaTransaction(xaTransaction);
        connectionDefinitionInstance.setConnectionmanager(connectionManager);
        configPropertySetting = connectorFactory.createConfigPropertySetting();
        configPropertySetting.setName("resource-connector-resourceadapter-outbound-connectiondefinition-instance-name");
        configPropertySetting.setValue("resource-connector-resourceadapter-outbound-connectiondefinition-instance-value");
View Full Code Here


      // add the pool's transaction type into plan
      int poolTypeIndex = combo.getSelectionIndex();
      // pool type is XA
      if (poolTypeIndex == 0) {
    Xatransaction xaTransaction = new Xatransaction();
    xaTransaction
      .setTransactionCaching(new org.apache.geronimo.jee.connector.Empty());
    manager.setXaTransaction(xaTransaction);
      }
      // pool type is LOCAL
      else if (poolTypeIndex == 1) {
View Full Code Here

TOP

Related Classes of org.apache.geronimo.jee.connector.Xatransaction

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.