001package io.ebean.cache; 002 003/** 004 * Used to validate that a query cache entry is still valid based on dependent tables. 005 */ 006public interface QueryCacheEntryValidate { 007 008 /** 009 * Return true if the entry is still valid based on dependent tables. 010 */ 011 boolean isValid(QueryCacheEntry queryCacheEntry); 012}