TransactionManagerLookup.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.cache; import javax.transaction.TransactionManager; /** * Plugin, which allows TreeCache to use different transactional systems * * @author Bela Ban, Aug 26 2003 * @version $Id: TransactionManagerLookup.java,v 1.3.6.1 2005/04/06 21:07:11 starksm Exp $ */ public interface TransactionManagerLookup { TransactionManager getTransactionManager() throws Exception; }
TransactionManagerLookup.java |