1 /* 2 * $Id: TransactionManagerFactory.java 19191 2010-08-25 21:05:23Z tcarlson $ 3 * -------------------------------------------------------------------------------------- 4 * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com 5 * 6 * The software in this package is published under the terms of the CPAL v1.0 7 * license, a copy of which has been included with this distribution in the 8 * LICENSE.txt file. 9 */ 10 11 package org.mule.api.transaction; 12 13 import org.mule.api.config.MuleConfiguration; 14 15 import javax.transaction.TransactionManager; 16 17 /** 18 * <code>TranactionManagerFactory</code> is a factory class for creating a 19 * transaction manager for the MuleServer. 20 * 21 */ 22 public interface TransactionManagerFactory 23 { 24 /** 25 * Creates of obtains the jta transaction manager to use for mule transactions 26 * 27 * @return the transaction manager to use 28 * @throws Exception if the transaction manager cannot be located or created 29 * @param config Mule configuration parameters 30 */ 31 TransactionManager create(MuleConfiguration config) throws Exception; 32 }