[jboss-cvs] JBossCache/tests/functional/org/jboss/cache/optimistic ...

Manik Surtani msurtani at jboss.com
Thu Jan 11 08:49:23 EST 2007


  User: msurtani
  Date: 07/01/11 08:49:23

  Modified:    tests/functional/org/jboss/cache/optimistic 
                        AbstractOptimisticTestCase.java
  Log:
  Changed CacheImpl ctor to be protected, and changed cache factories accordingly
  
  Revision  Changes    Path
  1.45      +6 -5      JBossCache/tests/functional/org/jboss/cache/optimistic/AbstractOptimisticTestCase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: AbstractOptimisticTestCase.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/optimistic/AbstractOptimisticTestCase.java,v
  retrieving revision 1.44
  retrieving revision 1.45
  diff -u -b -r1.44 -r1.45
  --- AbstractOptimisticTestCase.java	9 Jan 2007 16:21:53 -0000	1.44
  +++ AbstractOptimisticTestCase.java	11 Jan 2007 13:49:23 -0000	1.45
  @@ -7,6 +7,7 @@
   import org.jboss.cache.CacheImpl;
   import org.jboss.cache.CacheListener;
   import org.jboss.cache.CacheSPI;
  +import org.jboss.cache.DefaultCacheFactory;
   import org.jboss.cache.Fqn;
   import org.jboss.cache.config.CacheLoaderConfig;
   import org.jboss.cache.config.Configuration;
  @@ -81,7 +82,7 @@
   
      protected CacheImpl createCacheUnstarted(boolean optimistic) throws Exception
      {
  -      CacheImpl cache = new CacheImpl();
  +      CacheImpl cache = (CacheImpl) DefaultCacheFactory.getInstance().createCache(false);
         Configuration c = new Configuration();
         cache.setConfiguration(c);
         if (optimistic) c.setNodeLockingScheme("OPTIMISTIC");
  @@ -164,7 +165,7 @@
   
      protected CacheImpl createPessimisticCache() throws Exception
      {
  -      CacheImpl cache = new CacheImpl();
  +      CacheImpl cache = (CacheImpl) DefaultCacheFactory.getInstance().createCache(false);
         Configuration c = new Configuration();
         cache.setConfiguration(c);
   
  @@ -183,7 +184,7 @@
   
      protected CacheImpl createPessimisticCacheLocal() throws Exception
      {
  -      CacheImpl cache = new CacheImpl();
  +      CacheImpl cache = (CacheImpl) DefaultCacheFactory.getInstance().createCache(false);
         Configuration c = new Configuration();
         cache.setConfiguration(c);
   
  @@ -225,7 +226,7 @@
   
      protected CacheImpl createReplicatedCache(String name, Configuration.CacheMode mode) throws Exception
      {
  -      CacheImpl cache = new CacheImpl();
  +      CacheImpl cache = (CacheImpl) DefaultCacheFactory.getInstance().createCache(false);
         Configuration c = new Configuration();
         cache.setConfiguration(c);
   
  @@ -264,7 +265,7 @@
   
      protected CacheImpl createReplicatedCacheWithLoader(String name, boolean shared, Configuration.CacheMode cacheMode) throws Exception
      {
  -      CacheImpl cache = new CacheImpl();
  +      CacheImpl cache = (CacheImpl) DefaultCacheFactory.getInstance().createCache(false);
         Configuration c = new Configuration();
         cache.setConfiguration(c);
         c.setClusterName(name);
  
  
  



More information about the jboss-cvs-commits mailing list