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 13 public class StandardQueryCacheFactory implements QueryCacheFactory { 14 15 public QueryCache getQueryCache( 16 final String regionName, 17 final UpdateTimestampsCache updateTimestampsCache, 18 final Settings settings, 19 final Properties props) 20 throws HibernateException { 21 return new StandardQueryCache(settings, props, updateTimestampsCache, regionName); 22 } 23 24 } 25 | Popular Tags |