001 package railo.commons.io.cache; 002 003 public interface CacheFilter { 004 005 /** 006 * a string pattern of the filter, this is used when the filtering is made natively by the implementation 007 * @return string pattern of the filter 008 */ 009 public String toPattern(); 010 }