All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.cache.ehcache.internal.regions.EhcacheNaturalIdRegion Maven / Gradle / Ivy

Go to download

Integration for using Ehcache 2.x as a Hibernate second-level-cache provider

There is a newer version: 6.0.0.Alpha7
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */

package org.hibernate.cache.ehcache.internal.regions;

import java.util.Properties;

import net.sf.ehcache.Ehcache;

import org.hibernate.boot.spi.SessionFactoryOptions;
import org.hibernate.cache.CacheException;
import org.hibernate.cache.ehcache.internal.strategy.EhcacheAccessStrategyFactory;
import org.hibernate.cache.spi.CacheDataDescription;
import org.hibernate.cache.spi.NaturalIdRegion;
import org.hibernate.cache.spi.access.AccessType;
import org.hibernate.cache.spi.access.NaturalIdRegionAccessStrategy;

/**
 * A collection region specific wrapper around an Ehcache instance.
 * 

* This implementation returns Ehcache specific access strategy instances for all the non-transactional access types. Transactional access * is not supported. * * @author Chris Dennis * @author Abhishek Sanoujam * @author Alex Snaps */ public class EhcacheNaturalIdRegion extends EhcacheTransactionalDataRegion implements NaturalIdRegion { /** * Constructs an EhcacheNaturalIdRegion around the given underlying cache. * * @param accessStrategyFactory The factory for building needed NaturalIdRegionAccessStrategy instance * @param underlyingCache The ehcache cache instance * @param settings The Hibernate settings * @param metadata Metadata about the data to be cached in this region * @param properties Any additional[ properties */ public EhcacheNaturalIdRegion( EhcacheAccessStrategyFactory accessStrategyFactory, Ehcache underlyingCache, SessionFactoryOptions settings, CacheDataDescription metadata, Properties properties) { super( accessStrategyFactory, underlyingCache, settings, metadata, properties ); } @Override public NaturalIdRegionAccessStrategy buildAccessStrategy(AccessType accessType) throws CacheException { return getAccessStrategyFactory().createNaturalIdRegionAccessStrategy( this, accessType ); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy