1 package org.hibernate.cache; 3 4 import org.hibernate.HibernateException; 5 import org.hibernate.cfg.Settings; 6 7 import java.util.Properties ; 8 9 15 public interface QueryCacheFactory { 16 17 public QueryCache getQueryCache( 18 String regionName, 19 UpdateTimestampsCache updateTimestampsCache, 20 Settings settings, 21 Properties props) 22 throws HibernateException; 23 24 } 25 | Popular Tags |