KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > cache > TransactionManagerLookup


1 package org.jboss.cache;
2
3 import javax.transaction.TransactionManager JavaDoc;
4
5 /**
6  * Factory interface, allows CacheImpl to use different transactional systems.
7  *
8  * @author Bela Ban, Aug 26 2003
9  * @version $Id: TransactionManagerLookup.java,v 1.3 2006/12/30 17:49:54 msurtani Exp $
10  */

11 public interface TransactionManagerLookup
12 {
13
14    /**
15     * Returns a new TransactionManager.
16     *
17     * @throws Exception if lookup failed
18     */

19    TransactionManager JavaDoc getTransactionManager() throws Exception JavaDoc;
20
21 }
22
Popular Tags