01: /*
02: * Created on Jun 5, 2005
03: *
04: */
05: package com.jofti.cache;
06:
07: import com.jofti.api.IndexCache;
08:
09: /**
10: *
11: * The base interface that any IndexCache adapter must extend.<p>
12: *
13: * @author Steve Woodcock<br>
14: */
15: public interface CacheAdapter extends IndexCache, LifeCycleAdapter {
16:
17: }
|