01: /*
02: * Created on 17-Jun-2005
03: *
04:
05: */
06: package com.jofti.core;
07:
08: import com.jofti.exception.JoftiException;
09:
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: }
|