001 package railo.commons.io.cache; 002 003 public interface CacheEntryFilter extends CacheFilter { 004 005 /** 006 * Tests if a specified entry should be accepted. 007 * @param entry entry to check 008 * @return if and only if the Entry should be accepted; false otherwise. 009 */ 010 public boolean accept(CacheEntry entry); 011 }