/* * Hibernate OGM, Domain model persistence for NoSQL datastores * * 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.ogm.datastore.infinispan.persistencestrategy.kind.impl; /** * The names of the caches used to store entities etc. in Infinispan. * * @author Emmanuel Bernard <emmanuel@hibernate.org> */ public final class CacheNames { public static final String ENTITY_CACHE = "ENTITIES"; public static final String ASSOCIATION_CACHE = "ASSOCIATIONS"; public static final String IDENTIFIER_CACHE = "IDENTIFIERS"; }