/* * 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.runtime.core.config.bootstrap; import org.mule.runtime.core.api.MuleContext; import org.mule.runtime.core.api.transaction.Transaction; import org.mule.runtime.api.tx.TransactionException; import org.mule.runtime.core.api.transaction.UniversalTransactionFactory; public final class FakeTransactionFactory implements UniversalTransactionFactory { @Override public Transaction beginTransaction(MuleContext muleContext) throws TransactionException { return null; } @Override public boolean isTransacted() { return false; } @Override public Transaction createUnboundTransaction(MuleContext muleContext) throws TransactionException { return null; } }