Package com.arjuna.mw.wst

Examples of com.arjuna.mw.wst.UserTransaction


{

    public static void testSingleParticipant()
            throws Exception
    {
      UserTransaction ut = UserTransaction.getUserTransaction();
      TransactionManager tm = TransactionManager.getTransactionManager();
      DemoDurableParticipant p = new DemoDurableParticipant();
     
      ut.begin();
      try {
      tm.enlistForDurableTwoPhase(p, p.identifier());
        catch (Exception eouter) {
            try {
                ut.rollback();
            } catch(Exception einner) {
            }
            throw eouter;
        }

      ut.commit();
    }
View Full Code Here


public class CommitExceptionInCommit extends TestCase
{
    public static void testCommitExceptionInCommit()
            throws Throwable
    {
        UserTransaction ut = UserTransaction.getUserTransaction();
  try
  {
      TransactionManager tm = TransactionManager.getTransactionManager();
      FailureParticipant p1 = new FailureParticipant(FailureParticipant.FAIL_IN_COMMIT, FailureParticipant.WRONG_STATE);
      DemoDurableParticipant p2 = new DemoDurableParticipant();
     
      ut.begin();
     
      tm.enlistForDurableTwoPhase(p1, "failure");
      tm.enlistForDurableTwoPhase(p2, p2.identifier());
    } catch (Exception eouter)
    {
        try {
            ut.rollback();
        } catch(Exception einner) {
        }
        throw eouter;
    }
    try {
      ut.commit();

        fail("expected SystemException");
  }
  catch (com.arjuna.wst.SystemException ex)
    {
View Full Code Here

{

    public static void testSuspendTransaction()
            throws Exception
    {
      UserTransaction ut = UserTransaction.getUserTransaction();
      TransactionManager tm = TransactionManager.getTransactionManager();
 
      ut.begin();
     
      TxContext ctx = tm.suspend();

      System.out.println("Suspended: "+ctx);
    }
View Full Code Here

public class CommitExceptionInPrepare extends TestCase
{
    public static void testCommitExceptionInPrepare()
            throws Exception
    {
        UserTransaction ut = UserTransaction.getUserTransaction();
  try
  {
      TransactionManager tm = TransactionManager.getTransactionManager();
      FailureParticipant p1 = new FailureParticipant(FailureParticipant.FAIL_IN_PREPARE, FailureParticipant.WRONG_STATE);
      DemoDurableParticipant p2 = new DemoDurableParticipant();
     
      ut.begin();
     
      tm.enlistForDurableTwoPhase(p1, "failure");
      tm.enlistForDurableTwoPhase(p2, p2.identifier());
    } catch (Exception eouter) {
        try {
            ut.rollback();
        } catch(Exception einner) {
        }
        throw eouter;
    }
  try {
      ut.commit();

      fail("expected SystemException");
  }
  catch (com.arjuna.wst.SystemException ex)
  {
View Full Code Here

{

    public static void testPrintTransaction()
            throws Exception
    {
      UserTransaction ut = UserTransaction.getUserTransaction();
 
      ut.begin();

      System.out.println("Started: "+ut);
     
      ut.commit();

      System.out.println("\nCurrent: "+ut);
  }
View Full Code Here

public class RollbackExceptionInRollback extends TestCase
{
    public static void testRollbackExceptionInRollback()
            throws Exception
    {
      UserTransaction ut = UserTransaction.getUserTransaction();
      TransactionManager tm = TransactionManager.getTransactionManager();
      FailureParticipant p1 = new FailureParticipant(FailureParticipant.FAIL_IN_ROLLBACK, FailureParticipant.WRONG_STATE);
      DemoDurableParticipant p2 = new DemoDurableParticipant();
     
      ut.begin();
      try {
      tm.enlistForDurableTwoPhase(p1, "failure");
      tm.enlistForDurableTwoPhase(p2, p2.identifier());
        catch (Exception eouter) {
            try {
                ut.rollback();
            } catch(Exception einner) {
            }
            throw eouter;
        }

      ut.rollback();
    }
View Full Code Here

{

    public static void testMultiParticipants()
            throws Exception
    {
      UserTransaction ut = UserTransaction.getUserTransaction();
        TransactionManager tm = TransactionManager.getTransactionManager();
      DemoDurableParticipant p1 = new DemoDurableParticipant();
      DemoDurableParticipant p2 = new DemoDurableParticipant();
      DemoDurableParticipant p3 = new DemoDurableParticipant();
      DemoDurableParticipant p4 = new DemoDurableParticipant();

      ut.begin();
      try {
      tm.enlistForDurableTwoPhase(p1, p1.identifier());
      tm.enlistForDurableTwoPhase(p2, p2.identifier());
      tm.enlistForDurableTwoPhase(p3, p3.identifier());
      tm.enlistForDurableTwoPhase(p4, p4.identifier());
        catch (Exception eouter) {
            try {
                ut.rollback();
            } catch(Exception einner) {
            }
            throw eouter;
        }

      ut.commit();
    }
View Full Code Here

{

    public static void testNullCommitTransaction()
            throws Exception
    {
      UserTransaction ut = UserTransaction.getUserTransaction();
 
      ut.begin();
     
      ut.commit();
    }
View Full Code Here

{

    public static void testSuspendResumeSingleParticipant()
            throws Exception
    {
      UserTransaction ut = UserTransaction.getUserTransaction();
      TransactionManager tm = TransactionManager.getTransactionManager();
      DemoDurableParticipant p = new DemoDurableParticipant();
  try {
      ut.begin();
     
      tm.enlistForDurableTwoPhase(p, p.identifier());

      TxContext ctx = tm.suspend();
     
      System.out.println("Suspended: "+ctx);

      tm.resume(ctx);

      System.out.println("\nResumed\n");
    catch (Exception eouter) {
        try {
            ut.rollback();
        } catch(Exception einner) {
        }
        throw eouter;
    }
      ut.commit();
    }
View Full Code Here

{

    public static void testSuspendResumeCommitTransaction()
            throws Exception
    {
      UserTransaction ut = UserTransaction.getUserTransaction();
      TransactionManager tm = TransactionManager.getTransactionManager();
 
      ut.begin();
     
      TxContext ctx = tm.suspend();

      System.out.println("Suspended: "+ctx);
     
      tm.resume(ctx);

      System.out.println("\nResumed");
     
      ut.commit();
    }
View Full Code Here

TOP

Related Classes of com.arjuna.mw.wst.UserTransaction

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.