/** * @author PoisonSoft * * ėpCache\[X interface */ public interface CacheSource { /** * Method read. * @param key * @return Object * @throws CacheSourceException */ public Object read(Object key) throws CacheSourceException; /** * Method write. * @param key * @param value * @throws CacheSourceException */ public void write(Object key, Object value) throws CacheSourceException; /** * Method delete. * @param key * @throws CacheSourceException */ public void delete(Object key) throws CacheSourceException; } // end of file