Uses of Class
org.hibernate.cache.spi.QueryKey

Packages that use QueryKey
org.hibernate.cache.internal   
org.hibernate.cache.spi Defines the Hibernate second level caching SPI. 
org.hibernate.loader This package defines functionality for processing JDBC result sets and returning complex graphs of persistent objects. 
org.hibernate.loader.custom This package defines a framework for custom loaders that accept handwritten SQL 
 

Uses of QueryKey in org.hibernate.cache.internal
 

Methods in org.hibernate.cache.internal with parameters of type QueryKey
 List StandardQueryCache.get(QueryKey key, Type[] returnTypes, boolean isNaturalKeyLookup, Set spaces, SessionImplementor session)
           
 boolean StandardQueryCache.put(QueryKey key, Type[] returnTypes, List result, boolean isNaturalKeyLookup, SessionImplementor session)
           
 

Uses of QueryKey in org.hibernate.cache.spi
 

Methods in org.hibernate.cache.spi that return QueryKey
static QueryKey QueryKey.generateQueryKey(String queryString, QueryParameters queryParameters, Set filterKeys, SessionImplementor session, CacheableResultTransformer customTransformer)
          Generates a QueryKey.
 

Methods in org.hibernate.cache.spi with parameters of type QueryKey
 List QueryCache.get(QueryKey key, Type[] returnTypes, boolean isNaturalKeyLookup, Set spaces, SessionImplementor session)
           
 boolean QueryCache.put(QueryKey key, Type[] returnTypes, List result, boolean isNaturalKeyLookup, SessionImplementor session)
           
 

Uses of QueryKey in org.hibernate.loader
 

Methods in org.hibernate.loader with parameters of type QueryKey
protected  void Loader.putResultInQueryCache(SessionImplementor session, QueryParameters queryParameters, Type[] resultTypes, QueryCache queryCache, QueryKey key, List result)
           
 

Uses of QueryKey in org.hibernate.loader.custom
 

Methods in org.hibernate.loader.custom with parameters of type QueryKey
protected  void CustomLoader.putResultInQueryCache(SessionImplementor session, QueryParameters queryParameters, Type[] resultTypes, QueryCache queryCache, QueryKey key, List result)
          CustomLoader.resultTypes can be overridden by CustomLoader.autoDiscoverTypes(ResultSet), *after* CustomLoader.list(SessionImplementor, QueryParameters) has already been called.
 



Copyright © 2001-2015 Red Hat, Inc. All Rights Reserved.