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 ;8 /**9 * Created by The eXo Platform SARL .10 * Author : Tuan Nguyen11 * tuan08@users.sourceforge.net12 * Date: Jun 14, 200313 * Time: 1:12:22 PM14 */15 public interface CacheService {16 17 public ExoCache getCacheInstance(String region) throws Exception ;18 19 public Collection getAllCacheInstances() throws Exception ;20 }21