KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > jofti > core > ITransactionAware


1 /*
2  * Created on 17-Jun-2005
3  *
4
5  */

6 package com.jofti.core;
7
8 import com.jofti.exception.JoftiException;
9
10 /**
11  *
12  *
13  * Internal transaction marker attached to IndexCache adapters to indicate as to whether it
14  * is able to support transactions.<p>
15  *
16  * @author Steve Woodcock (steve@jofti.com)
17  * @version 1.0
18  */

19 public interface ITransactionAware {
20
21     public TransactionLevel getTransactionLevel() throws JoftiException;
22 }
23
Popular Tags