01: /*
02: * Created on Jun 5, 2005
03: *
04: */
05: package com.jofti.cache;
06:
07: import com.jofti.api.NameSpacedIndex;
08:
09: /**
10:
11: *
12: * Cache Adapters which are name spaced must implement this interface.<p>
13: *
14: * @author Steve Woodcock
15: */
16: public interface NameSpacedCacheAdapter extends NameSpacedIndex,
17: LifeCycleAdapter {
18:
19: }
|