/* * 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 <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.boot; /** * Models the definition of caching settings for a particular region. Generally as found in either:<ul> * <li>{@code cfg.xml}</li> * <li>{@code hbm.xml}</li> * <li>annotation</li> * </ul> * Though certainly other custom sources are acceptable too. * * @author Steve Ebersole */ public class CacheRegionDefinition { public static enum CacheRegionType { ENTITY, COLLECTION, QUERY } private final CacheRegionType regionType; private final String role; private final String usage; private final String region; private final boolean cacheLazy; public CacheRegionDefinition( CacheRegionType cacheType, String role, String usage, String region, boolean cacheLazy) { this.regionType = cacheType; this.role = role; this.usage = usage; this.region = region; this.cacheLazy = cacheLazy; } public CacheRegionType getRegionType() { return regionType; } public String getRole() { return role; } public String getUsage() { return usage; } public String getRegion() { return region; } public boolean isCacheLazy() { return cacheLazy; } }