[jboss-cvs] JBossCache/src/org/jboss/cache/config ...

Manik Surtani msurtani at jboss.com
Thu Jul 20 02:04:56 EDT 2006


  User: msurtani
  Date: 06/07/20 02:04:56

  Modified:    src/org/jboss/cache/config  Configuration.java
  Log:
  Fixed some broken UTs to use the new xml parsers, cache factories, etc.
  
  Revision  Changes    Path
  1.6       +5 -5      JBossCache/src/org/jboss/cache/config/Configuration.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Configuration.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/config/Configuration.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- Configuration.java	20 Jul 2006 04:49:52 -0000	1.5
  +++ Configuration.java	20 Jul 2006 06:04:56 -0000	1.6
  @@ -104,7 +104,7 @@
       /**
        * The XML Element from which to configure the CacheLoader
        */
  -    private Element cacheLoaderConfig = null;
  +    private Element cacheLoaderConfiguration = null;
   
       /**
        * True if there is a synchronous commit phase, otherwise asynchronous commit.
  @@ -372,14 +372,14 @@
           this.transactionManagerLookupClass = transactionManagerLookupClass;
       }
   
  -    public Element getCacheLoaderConfig()
  +    public Element getCacheLoaderConfiguration()
       {
  -        return cacheLoaderConfig;
  +        return cacheLoaderConfiguration;
       }
   
  -    public void setCacheLoaderConfig(Element cacheLoaderConfig)
  +    public void setCacheLoaderConfiguration(Element cacheLoaderConfiguration)
       {
  -        this.cacheLoaderConfig = cacheLoaderConfig;
  +        this.cacheLoaderConfiguration = cacheLoaderConfiguration;
       }
   
       public boolean isSyncCommitPhase()
  
  
  



More information about the jboss-cvs-commits mailing list