/*
* Created on 17-Jun-2005
*
*/
package com.jofti.core;
import com.jofti.exception.JoftiException;
/**
*
*
* Internal transaction marker attached to IndexCache adapters to indicate as to whether it
* is able to support transactions.<p>
*
* @author Steve Woodcock (steve@jofti.com)
* @version 1.0
*/
public interface ITransactionAware {
public TransactionLevel getTransactionLevel() throws JoftiException;
}
|