Browse Source

Merge pull request #109 in CORE/base-third from ~LOY/base-third:feature/10.0 to feature/10.0

* commit 'ed243e29e8b4476deb1fb732af31cbbb0e2db768':
  DEC-4430 ehcache中import的jboss改包名
research/11.0
loy 6 years ago
parent
commit
bdf8af0b82
  1. 2
      fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/AbstractEhcacheRegionFactory.java
  2. 2
      fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/EhCacheMessageLogger.java
  3. 2
      fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/EhCacheRegionFactory.java
  4. 2
      fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/SingletonEhCacheRegionFactory.java
  5. 2
      fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/internal/nonstop/HibernateNonstopCacheExceptionHandler.java
  6. 2
      fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/internal/regions/EhcacheDataRegion.java
  7. 2
      fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/internal/regions/EhcacheGeneralDataRegion.java
  8. 2
      fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/internal/strategy/AbstractReadWriteEhcacheAccessStrategy.java
  9. 2
      fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/internal/strategy/EhcacheAccessStrategyFactoryImpl.java
  10. 2
      fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/internal/util/HibernateEhcacheUtils.java
  11. 2
      fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/management/impl/EhcacheHibernateMBeanRegistrationImpl.java
  12. 2
      fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/management/impl/ProviderMBeanRegistrationHelper.java

2
fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/AbstractEhcacheRegionFactory.java vendored

@ -36,7 +36,7 @@ import com.fr.third.org.hibernate.cache.spi.TimestampsRegion;
import com.fr.third.org.hibernate.cache.spi.access.AccessType;
import com.fr.third.org.hibernate.service.spi.InjectService;
import org.jboss.logging.Logger;
import com.fr.third.org.jboss.logging.Logger;
/**
* Abstract implementation of an Ehcache specific RegionFactory.

2
fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/EhCacheMessageLogger.java vendored

@ -14,7 +14,7 @@ import org.jboss.logging.annotations.LogMessage;
import org.jboss.logging.annotations.Message;
import org.jboss.logging.annotations.MessageLogger;
import static org.jboss.logging.Logger.Level.WARN;
import static com.fr.third.org.jboss.logging.Logger.Level.WARN;
/**
* The jboss-logging {@link MessageLogger} for the hibernate-ehcache module. It reserves message ids ranging from

2
fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/EhCacheRegionFactory.java vendored

@ -17,7 +17,7 @@ import com.fr.third.org.hibernate.boot.spi.SessionFactoryOptions;
import com.fr.third.org.hibernate.cache.CacheException;
import com.fr.third.org.hibernate.cache.ehcache.internal.util.HibernateEhcacheUtils;
import org.jboss.logging.Logger;
import com.fr.third.org.jboss.logging.Logger;
/**
* A non-singleton EhCacheRegionFactory implementation.

2
fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/SingletonEhCacheRegionFactory.java vendored

@ -18,7 +18,7 @@ import com.fr.third.org.hibernate.boot.spi.SessionFactoryOptions;
import com.fr.third.org.hibernate.cache.CacheException;
import com.fr.third.org.hibernate.cache.ehcache.internal.util.HibernateEhcacheUtils;
import org.jboss.logging.Logger;
import com.fr.third.org.jboss.logging.Logger;
/**
* A singleton EhCacheRegionFactory implementation.

2
fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/internal/nonstop/HibernateNonstopCacheExceptionHandler.java vendored

@ -10,7 +10,7 @@ import com.fr.third.net.sf.ehcache.constructs.nonstop.NonStopCacheException;
import com.fr.third.org.hibernate.cache.ehcache.EhCacheMessageLogger;
import org.jboss.logging.Logger;
import com.fr.third.org.jboss.logging.Logger;
/**
* Class that takes care of {@link NonStopCacheException} that happens in hibernate module

2
fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/internal/regions/EhcacheDataRegion.java vendored

@ -22,7 +22,7 @@ import com.fr.third.net.sf.ehcache.util.Timestamper;
import com.fr.third.org.hibernate.cache.CacheException;
import com.fr.third.org.hibernate.cache.spi.Region;
import org.jboss.logging.Logger;
import com.fr.third.org.jboss.logging.Logger;
/**
* An Ehcache specific data region implementation.

2
fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/internal/regions/EhcacheGeneralDataRegion.java vendored

@ -19,7 +19,7 @@ import com.fr.third.org.hibernate.cache.CacheException;
import com.fr.third.org.hibernate.cache.spi.GeneralDataRegion;
import com.fr.third.org.hibernate.engine.spi.SessionImplementor;
import org.jboss.logging.Logger;
import com.fr.third.org.jboss.logging.Logger;
/**
* An Ehcache specific GeneralDataRegion.

2
fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/internal/strategy/AbstractReadWriteEhcacheAccessStrategy.java vendored

@ -19,7 +19,7 @@ import com.fr.third.org.hibernate.cache.spi.access.RegionAccessStrategy;
import com.fr.third.org.hibernate.cache.spi.access.SoftLock;
import com.fr.third.org.hibernate.engine.spi.SessionImplementor;
import org.jboss.logging.Logger;
import com.fr.third.org.jboss.logging.Logger;
/**
* Superclass for all Ehcache specific read/write AccessStrategy implementations.

2
fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/internal/strategy/EhcacheAccessStrategyFactoryImpl.java vendored

@ -15,7 +15,7 @@ import com.fr.third.org.hibernate.cache.spi.access.CollectionRegionAccessStrateg
import com.fr.third.org.hibernate.cache.spi.access.EntityRegionAccessStrategy;
import com.fr.third.org.hibernate.cache.spi.access.NaturalIdRegionAccessStrategy;
import org.jboss.logging.Logger;
import com.fr.third.org.jboss.logging.Logger;
/**
* Class implementing {@link EhcacheAccessStrategyFactory}

2
fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/internal/util/HibernateEhcacheUtils.java vendored

@ -13,7 +13,7 @@ import com.fr.third.net.sf.ehcache.config.Configuration;
import com.fr.third.net.sf.ehcache.config.ConfigurationFactory;
import com.fr.third.net.sf.ehcache.config.NonstopConfiguration;
import com.fr.third.net.sf.ehcache.config.TimeoutBehaviorConfiguration.TimeoutBehaviorType;
import org.jboss.logging.Logger;
import com.fr.third.org.jboss.logging.Logger;
import com.fr.third.org.hibernate.cache.ehcache.EhCacheMessageLogger;

2
fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/management/impl/EhcacheHibernateMBeanRegistrationImpl.java vendored

@ -21,7 +21,7 @@ import com.fr.third.org.hibernate.SessionFactory;
import com.fr.third.org.hibernate.cache.ehcache.EhCacheMessageLogger;
import com.fr.third.org.hibernate.cfg.Environment;
import org.jboss.logging.Logger;
import com.fr.third.org.jboss.logging.Logger;
/**
* Implementation of {@link EhcacheHibernateMBeanRegistration}.

2
fine-ehcache/src/com/fr/third/org/hibernate/cache/ehcache/management/impl/ProviderMBeanRegistrationHelper.java vendored

@ -20,7 +20,7 @@ import com.fr.third.org.hibernate.cache.CacheException;
import com.fr.third.org.hibernate.cfg.Environment;
import com.fr.third.org.hibernate.internal.SessionFactoryRegistry;
import org.jboss.logging.Logger;
import com.fr.third.org.jboss.logging.Logger;
/**
* Helper class for registering mbeans for ehcache backed hibernate second level cache

Loading…
Cancel
Save