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

Brian Stansberry brian.stansberry at jboss.com
Mon Jun 4 22:59:02 EDT 2007


  User: bstansberry
  Date: 07/06/04 22:59:02

  Modified:    src/org/jboss/cache   RegionImpl.java Region.java
  Log:
  [JBCACHE-1092] Move EvictionPolicyConfig to org.jboss.cache.config
  
  Revision  Changes    Path
  1.22      +1 -1      JBossCache/src/org/jboss/cache/RegionImpl.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: RegionImpl.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/RegionImpl.java,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -b -r1.21 -r1.22
  --- RegionImpl.java	30 Mar 2007 14:22:27 -0000	1.21
  +++ RegionImpl.java	5 Jun 2007 02:59:02 -0000	1.22
  @@ -8,10 +8,10 @@
   
   import org.apache.commons.logging.Log;
   import org.apache.commons.logging.LogFactory;
  +import org.jboss.cache.config.EvictionPolicyConfig;
   import org.jboss.cache.config.EvictionRegionConfig;
   import org.jboss.cache.eviction.EvictedEventNode;
   import org.jboss.cache.eviction.EvictionPolicy;
  -import org.jboss.cache.eviction.EvictionPolicyConfig;
   import org.jboss.cache.eviction.NodeEventType;
   import org.jboss.cache.util.Util;
   
  
  
  
  1.16      +2 -2      JBossCache/src/org/jboss/cache/Region.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Region.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/Region.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -b -r1.15 -r1.16
  --- Region.java	23 Apr 2007 15:56:30 -0000	1.15
  +++ Region.java	5 Jun 2007 02:59:02 -0000	1.16
  @@ -6,10 +6,10 @@
    */
   package org.jboss.cache;
   
  +import org.jboss.cache.config.EvictionPolicyConfig;
   import org.jboss.cache.config.EvictionRegionConfig;
   import org.jboss.cache.eviction.EvictedEventNode;
   import org.jboss.cache.eviction.EvictionPolicy;
  -import org.jboss.cache.eviction.EvictionPolicyConfig;
   import org.jboss.cache.eviction.LRUPolicy;
   
   /**
  @@ -18,7 +18,7 @@
    * All nodes and child nodes of this Fqn belong to this region.
    * <p/>
    * If a region is to be recognised as an eviction region (region of type {@link Type#EVICTION} then
  - * it <b>must</b> have an {@link org.jboss.cache.eviction.EvictionPolicyConfig} set using {@link #setEvictionPolicy(org.jboss.cache.eviction.EvictionPolicyConfig)}.
  + * it <b>must</b> have an {@link org.jboss.cache.config.EvictionPolicyConfig} set using {@link #setEvictionPolicy(org.jboss.cache.config.EvictionPolicyConfig)}.
    * <p/>
    * Similarly, to be recognised as a marshalling region (region of type {@link Type#MARSHALLING} then it <b>must</b> have a
    * {@link ClassLoader} registered using {@link #registerContextClassLoader(ClassLoader)}.
  
  
  



More information about the jboss-cvs-commits mailing list