Uses of Class
org.hibernate.cfg.Settings

Packages that use Settings
org.hibernate.cache.ehcache   
org.hibernate.cache.ehcache.internal.regions   
org.hibernate.cache.ehcache.internal.strategy   
org.hibernate.cache.infinispan   
org.hibernate.cache.infinispan.tm   
org.hibernate.cache.internal   
org.hibernate.cache.spi Defines the Hibernate second level caching SPI. 
org.hibernate.cfg This package defines APIs for configuring Hibernate, and classes for building the Hibernate configuration-time metamodel. 
org.hibernate.engine.spi   
org.hibernate.internal An internal package containing mostly implementations of central Hibernate APIs. 
org.hibernate.testing.cache   
 

Uses of Settings in org.hibernate.cache.ehcache
 

Methods in org.hibernate.cache.ehcache with parameters of type Settings
 void SingletonEhCacheRegionFactory.start(Settings settings, Properties properties)
          Lifecycle callback to perform any necessary initialization of the underlying cache implementation(s).
 void EhCacheRegionFactory.start(Settings settings, Properties properties)
          Lifecycle callback to perform any necessary initialization of the underlying cache implementation(s).
 

Uses of Settings in org.hibernate.cache.ehcache.internal.regions
 

Fields in org.hibernate.cache.ehcache.internal.regions declared as Settings
protected  Settings EhcacheTransactionalDataRegion.settings
          Hibernate settings associated with the persistence unit.
 

Methods in org.hibernate.cache.ehcache.internal.regions that return Settings
 Settings EhcacheTransactionalDataRegion.getSettings()
          Return the hibernate settings
 

Constructors in org.hibernate.cache.ehcache.internal.regions with parameters of type Settings
EhcacheCollectionRegion(EhcacheAccessStrategyFactory accessStrategyFactory, net.sf.ehcache.Ehcache underlyingCache, Settings settings, CacheDataDescription metadata, Properties properties)
          Constructs an EhcacheCollectionRegion around the given underlying cache.
EhcacheEntityRegion(EhcacheAccessStrategyFactory accessStrategyFactory, net.sf.ehcache.Ehcache underlyingCache, Settings settings, CacheDataDescription metadata, Properties properties)
          Constructs an EhcacheEntityRegion around the given underlying cache.
EhcacheNaturalIdRegion(EhcacheAccessStrategyFactory accessStrategyFactory, net.sf.ehcache.Ehcache underlyingCache, Settings settings, CacheDataDescription metadata, Properties properties)
          Constructs an EhcacheNaturalIdRegion around the given underlying cache.
 

Uses of Settings in org.hibernate.cache.ehcache.internal.strategy
 

Constructors in org.hibernate.cache.ehcache.internal.strategy with parameters of type Settings
NonStrictReadWriteEhcacheCollectionRegionAccessStrategy(EhcacheCollectionRegion region, Settings settings)
          Create a non-strict read/write access strategy accessing the given collection region.
NonStrictReadWriteEhcacheEntityRegionAccessStrategy(EhcacheEntityRegion region, Settings settings)
          Create a non-strict read/write access strategy accessing the given collection region.
NonStrictReadWriteEhcacheNaturalIdRegionAccessStrategy(EhcacheNaturalIdRegion region, Settings settings)
          Create a non-strict read/write access strategy accessing the given NaturalId region.
ReadOnlyEhcacheCollectionRegionAccessStrategy(EhcacheCollectionRegion region, Settings settings)
          Create a read-only access strategy accessing the given collection region.
ReadOnlyEhcacheEntityRegionAccessStrategy(EhcacheEntityRegion region, Settings settings)
          Create a read-only access strategy accessing the given entity region.
ReadOnlyEhcacheNaturalIdRegionAccessStrategy(EhcacheNaturalIdRegion region, Settings settings)
          Create a read-only access strategy accessing the given NaturalId region.
ReadWriteEhcacheCollectionRegionAccessStrategy(EhcacheCollectionRegion region, Settings settings)
          Create a read/write access strategy accessing the given collection region.
ReadWriteEhcacheEntityRegionAccessStrategy(EhcacheEntityRegion region, Settings settings)
          Create a read/write access strategy accessing the given entity region.
ReadWriteEhcacheNaturalIdRegionAccessStrategy(EhcacheNaturalIdRegion region, Settings settings)
          Create a read/write access strategy accessing the given NaturalId region.
TransactionalEhcacheCollectionRegionAccessStrategy(EhcacheCollectionRegion region, net.sf.ehcache.Ehcache ehcache, Settings settings)
          Construct a new collection region access strategy.
TransactionalEhcacheEntityRegionAccessStrategy(EhcacheEntityRegion region, net.sf.ehcache.Ehcache ehcache, Settings settings)
          Construct a new entity region access strategy.
TransactionalEhcacheNaturalIdRegionAccessStrategy(EhcacheNaturalIdRegion region, net.sf.ehcache.Ehcache ehcache, Settings settings)
          Construct a new collection region access strategy.
 

Uses of Settings in org.hibernate.cache.infinispan
 

Methods in org.hibernate.cache.infinispan with parameters of type Settings
protected  org.infinispan.transaction.lookup.TransactionManagerLookup InfinispanRegionFactory.createTransactionManagerLookup(Settings settings, Properties properties)
           
 void InfinispanRegionFactory.start(Settings settings, Properties properties)
          Lifecycle callback to perform any necessary initialization of the underlying cache implementation(s).
 

Uses of Settings in org.hibernate.cache.infinispan.tm
 

Constructors in org.hibernate.cache.infinispan.tm with parameters of type Settings
HibernateTransactionManagerLookup(Settings settings, Properties properties)
           
 

Uses of Settings in org.hibernate.cache.internal
 

Methods in org.hibernate.cache.internal with parameters of type Settings
 QueryCache StandardQueryCacheFactory.getQueryCache(String regionName, UpdateTimestampsCache updateTimestampsCache, Settings settings, Properties props)
           
 void NoCachingRegionFactory.start(Settings settings, Properties properties)
           
 

Constructors in org.hibernate.cache.internal with parameters of type Settings
StandardQueryCache(Settings settings, Properties props, UpdateTimestampsCache updateTimestampsCache, String regionName)
           
 

Uses of Settings in org.hibernate.cache.spi
 

Methods in org.hibernate.cache.spi with parameters of type Settings
 QueryCache QueryCacheFactory.getQueryCache(String regionName, UpdateTimestampsCache updateTimestampsCache, Settings settings, Properties props)
           
 void RegionFactory.start(Settings settings, Properties properties)
          Lifecycle callback to perform any necessary initialization of the underlying cache implementation(s).
 

Constructors in org.hibernate.cache.spi with parameters of type Settings
UpdateTimestampsCache(Settings settings, Properties props)
           
UpdateTimestampsCache(Settings settings, Properties props, SessionFactoryImplementor factory)
           
 

Uses of Settings in org.hibernate.cfg
 

Methods in org.hibernate.cfg that return Settings
 Settings Configuration.buildSettings(Properties props, ServiceRegistry serviceRegistry)
           
 Settings SettingsFactory.buildSettings(Properties props, ServiceRegistry serviceRegistry)
           
 Settings Configuration.buildSettings(ServiceRegistry serviceRegistry)
          Create an object-oriented view of the configuration properties
 

Uses of Settings in org.hibernate.engine.spi
 

Methods in org.hibernate.engine.spi that return Settings
 Settings SessionFactoryImplementor.getSettings()
           
 

Uses of Settings in org.hibernate.internal
 

Methods in org.hibernate.internal that return Settings
 Settings SessionFactoryImpl.getSettings()
           
 

Constructors in org.hibernate.internal with parameters of type Settings
SessionFactoryImpl(Configuration cfg, Mapping mapping, ServiceRegistry serviceRegistry, Settings settings, SessionFactoryObserver observer)
           
 

Uses of Settings in org.hibernate.testing.cache
 

Methods in org.hibernate.testing.cache with parameters of type Settings
 void CachingRegionFactory.start(Settings settings, Properties properties)
           
 



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