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