01: /*
02: * Created on 24-Mar-2003
03: */
04: package net.sf.jportlet.service.cache;
05:
06: import net.sf.jportlet.service.PortletService;
07:
08: /**
09: * This service is used for caching data
10: *
11: * @author <a href="mailto:tchbansi@sourceforge.net">Herve Tchepannou</a>
12: */
13: public interface CacheService extends PortletService {
14: //~ Static fields/initializers ---------------------------------------------
15:
16: public static final String NAME = CacheService.class.getName();
17:
18: //~ Methods ----------------------------------------------------------------
19:
20: public CacheRegion getRegion(Object id, boolean create);
21: }
|