/* * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */ package org.mule.test.transactional.connection; public class TestLocalTransactionalConnection implements TestTransactionalConnection { private boolean transactionBegun, transactionCommited, transactionRolledback = false; private boolean connected = true; private double connectionId; public TestLocalTransactionalConnection() { connectionId = Math.random(); } @Override public void begin() throws Exception { transactionBegun = true; } @Override public void commit() throws Exception { transactionCommited = true; } @Override public void rollback() throws Exception { transactionRolledback = true; } @Override public double getConnectionId() { return connectionId; } @Override public boolean isTransactionBegun() { return transactionBegun; } @Override public boolean isTransactionCommited() { return transactionCommited; } @Override public boolean isTransactionRolledback() { return transactionRolledback; } @Override public void disconnect() { connected = false; } @Override public boolean isConnected() { return connected; } }