KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > cache > CacheService


1 /***************************************************************************
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *
3  * Please look at license.txt in info directory for more license detail. *
4  **************************************************************************/

5 package org.exoplatform.services.cache;
6
7 import java.util.Collection JavaDoc;
8 /**
9  * Created by The eXo Platform SARL .
10  * Author : Tuan Nguyen
11  * tuan08@users.sourceforge.net
12  * Date: Jun 14, 2003
13  * Time: 1:12:22 PM
14  */

15 public interface CacheService {
16   
17   public ExoCache getCacheInstance(String JavaDoc region) throws Exception JavaDoc ;
18   
19   public Collection JavaDoc getAllCacheInstances() throws Exception JavaDoc ;
20 }
21
Popular Tags