001 package railo.runtime.cache.legacy; 002 003 import java.io.IOException; 004 005 import railo.runtime.type.dt.TimeSpan; 006 007 public interface CacheEntry { 008 009 public String readEntry(TimeSpan timeSpan,String defaultValue) throws IOException; 010 public void writeEntry(String entry,boolean append) throws IOException; 011 012 //public String getName(); 013 //public String getRaw(); 014 }