[jboss-cvs] JBossCache/src/org/jboss/cache/loader/bdbje ...

Manik Surtani msurtani at jboss.com
Sat Dec 30 12:50:03 EST 2006


  User: msurtani
  Date: 06/12/30 12:50:03

  Modified:    src/org/jboss/cache/loader/bdbje  BdbjeCacheLoader.java
  Log:
  Major changes to restructure cache and node object model
  
  Revision  Changes    Path
  1.24      +21 -21    JBossCache/src/org/jboss/cache/loader/bdbje/BdbjeCacheLoader.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: BdbjeCacheLoader.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/loader/bdbje/BdbjeCacheLoader.java,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -b -r1.23 -r1.24
  --- BdbjeCacheLoader.java	8 Dec 2006 18:49:17 -0000	1.23
  +++ BdbjeCacheLoader.java	30 Dec 2006 17:50:03 -0000	1.24
  @@ -23,7 +23,6 @@
   import org.jboss.cache.Modification;
   import org.jboss.cache.config.CacheLoaderConfig.IndividualCacheLoaderConfig;
   import org.jboss.cache.loader.AbstractCacheLoader;
  -import java.util.concurrent.ConcurrentHashMap;
   
   import java.io.File;
   import java.io.IOException;
  @@ -35,6 +34,7 @@
   import java.util.List;
   import java.util.Map;
   import java.util.Set;
  +import java.util.concurrent.ConcurrentHashMap;
   
   
   /**
  @@ -43,14 +43,14 @@
    * <p>The configuration string format is:</p>
    * <pre>environmentDirectoryName[#databaseName]</pre>
    * <p>where databaseName, if omitted, defaults to the ClusterName property
  - * of the TreeCache.</p>
  + * of the CacheImpl.</p>
    * <p/>
    * <p>A je.properties file may optionally be placed in the JE environment
    * directory and used to customize the default JE configuration.</p>
    *
    * @author Mark Hayes May 16, 2004
    * @author Bela Ban
  - * @version $Id: BdbjeCacheLoader.java,v 1.23 2006/12/08 18:49:17 genman Exp $
  + * @version $Id: BdbjeCacheLoader.java,v 1.24 2006/12/30 17:50:03 msurtani Exp $
    */
   public class BdbjeCacheLoader extends AbstractCacheLoader
   {
  @@ -158,7 +158,7 @@
         catalogDbName = cacheDbName + "_class_catalog";
   
         /*
  -       * If the TreeCache is transactional, we will create transactional
  +       * If the CacheImpl is transactional, we will create transactional
          * databases.  However, we always create a transactional environment
          * since it may be shared by transactional and non-transactional caches.
          */
  @@ -296,7 +296,7 @@
      }
   
      /**
  -    * Sets the TreeCache owner of this cache loader.
  +    * Sets the CacheImpl owner of this cache loader.
       */
      public void setCache(CacheSPI c)
      {
  
  
  



More information about the jboss-cvs-commits mailing list