Package org.jboss.test.jbossts.taskdefs

Examples of org.jboss.test.jbossts.taskdefs.TransactionLog


         if (storeDir == null)
            storeDir = serverPath + "data/tx-object-store";
         else
            storeDir = serverPath + storeDir;
         System.out.println("transaction log will be stored in " + storeDir + "(file=" + storeImple+")");
         store = new TransactionLog(storeDir, storeImple);

         if (expectFailure)
         {
            // this test may halt the VM so make sure the transaction log is empty
            // before starting the test - then the pass/fail check is simply to
View Full Code Here


      if (storeDir == null)
         storeDir = serverPath + "data/tx-object-store";
      else
         storeDir = serverPath + storeDir;
     
      TransactionLog store = new TransactionLog(storeDir, storeImple);
     
      return store;
   }
View Full Code Here

TOP

Related Classes of org.jboss.test.jbossts.taskdefs.TransactionLog

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.