1 package org.jboss.cache;2 3 import javax.transaction.TransactionManager ;4 5 /**6 * Factory interface, allows CacheImpl to use different transactional systems.7 *8 * @author Bela Ban, Aug 26 20039 * @version $Id: TransactionManagerLookup.java,v 1.3 2006/12/30 17:49:54 msurtani Exp $10 */11 public interface TransactionManagerLookup12 {13 14 /**15 * Returns a new TransactionManager.16 *17 * @throws Exception if lookup failed18 */19 TransactionManager getTransactionManager() throws Exception ;20 21 }22