Package org.hibernate.cache.internal

Source Code of org.hibernate.cache.internal.NoCachingRegionFactory

/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* Copyright (c) 2010, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
* statements applied by the authors.  All third-party contributions are
* distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA  02110-1301  USA
*/
package org.hibernate.cache.internal;

import java.util.Properties;

import org.hibernate.cache.CacheException;
import org.hibernate.cache.NoCacheRegionFactoryAvailableException;
import org.hibernate.cache.spi.CacheDataDescription;
import org.hibernate.cache.spi.CollectionRegion;
import org.hibernate.cache.spi.EntityRegion;
import org.hibernate.cache.spi.NaturalIdRegion;
import org.hibernate.cache.spi.QueryResultsRegion;
import org.hibernate.cache.spi.RegionFactory;
import org.hibernate.cache.spi.TimestampsRegion;
import org.hibernate.cache.spi.access.AccessType;
import org.hibernate.cfg.Settings;

/**
* Factory used if no caching enabled in config...
*
* @author Steve Ebersole
*/
public class NoCachingRegionFactory implements RegionFactory {
  public NoCachingRegionFactory() {
  }

  public void start(Settings settings, Properties properties) throws CacheException {
  }

  public void stop() {
  }

  public boolean isMinimalPutsEnabledByDefault() {
    return false;
  }

  public AccessType getDefaultAccessType() {
    return null;
  }

  public long nextTimestamp() {
    return System.currentTimeMillis() / 100;
  }

  public EntityRegion buildEntityRegion(String regionName, Properties properties, CacheDataDescription metadata)
      throws CacheException {
    throw new NoCacheRegionFactoryAvailableException();
  }
 
  public NaturalIdRegion buildNaturalIdRegion(String regionName, Properties properties, CacheDataDescription metadata)
      throws CacheException {
    throw new NoCacheRegionFactoryAvailableException();
  }

  public CollectionRegion buildCollectionRegion(String regionName, Properties properties, CacheDataDescription metadata)
      throws CacheException {
    throw new NoCacheRegionFactoryAvailableException();
  }

  public QueryResultsRegion buildQueryResultsRegion(String regionName, Properties properties) throws CacheException {
    throw new NoCacheRegionFactoryAvailableException();
  }

  public TimestampsRegion buildTimestampsRegion(String regionName, Properties properties) throws CacheException {
    throw new NoCacheRegionFactoryAvailableException();
  }
}
TOP

Related Classes of org.hibernate.cache.internal.NoCachingRegionFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.