private List<CacheDeleteDefinition> cacheDeleteDefinitions;
private List<VersionUpdateDefinition> versionUpdateDefinitions;
public CacheDefinitionCollection(Method method) throws DaoGenerateException {
Cache cache = method.getAnnotation(Cache.class);
if (cache != null) {
cacheDefinition = new CacheDefinition(cache, method);
}
CacheDelete cacheDelete = method.getAnnotation(CacheDelete.class);