1 5 package org.exoplatform.services.cache; 6 7 import java.io.Serializable ; 8 15 public interface ExoCache { 16 17 public String getName() ; 18 public Object get(Serializable name) throws Exception ; 19 public Object remove(Serializable name) throws Exception ; 20 public void put(Serializable name, Object obj) throws Exception ; 21 public void clear() throws Exception ; 22 public int getCacheSize() ; 23 public int getMaxSize() ; 24 public void setMaxSize(int max) ; 25 26 public int getCacheHit() ; 27 public int getCacheMiss() ; 28 } 29 | Popular Tags |