colus       02/04/30 21:01:33

  Modified:    cache/src/java/org/apache/excalibur/cache AbstractCache.java
                        Cache.java CacheEvent.java CacheListener.java
                        CacheStore.java CacheValidator.java
                        DefaultCache.java LRUCache.java
                        ReplacementPolicy.java SynchronizedCache.java
                        TimeMapLRUCache.java ValidatingCache.java
               cache/src/java/org/apache/excalibur/cache/impl LRUCache.java
                        TimeMapLRUCache.java
               cache/src/java/org/apache/excalibur/cache/policy
                        FIFOPolicy.java LRUPolicy.java ListBasedPolicy.java
                        TimeMapLRUPolicy.java
               cache/src/java/org/apache/excalibur/cache/store
                        AbstractCacheStore.java FlipSpacesStore.java
                        MemoryStore.java
               cache/src/java/org/apache/excalibur/cache/validator
                        AndValidator.java TimeoutValidator.java
               cache/src/test/org/apache/excalibur/cache/impl/test
                        AbstractCacheTestCase.java LRUCacheTestCase.java
                        TimeMapLRUCacheTestCase.java
               cache/src/test/org/apache/excalibur/cache/store/test
                        AbstractCacheStoreTestCase.java
                        FlipSpacesStoreTestCase.java
                        MemoryStoreTestCase.java
               cache/src/test/org/apache/excalibur/cache/validator/test
                        TimeoutValidatorTestCase.java
  Removed:     cache/src/java/org/apache/avalon/excalibur/cache
                        AbstractCache.java Cache.java CacheEvent.java
                        CacheListener.java CacheStore.java
                        CacheValidator.java DefaultCache.java LRUCache.java
                        ReplacementPolicy.java SynchronizedCache.java
                        TimeMapLRUCache.java ValidatingCache.java
               cache/src/java/org/apache/avalon/excalibur/cache/doc-files
                        cache.dia cache.png
               cache/src/java/org/apache/avalon/excalibur/cache/impl
                        LRUCache.java TimeMapLRUCache.java
               cache/src/java/org/apache/avalon/excalibur/cache/policy
                        FIFOPolicy.java LRUPolicy.java ListBasedPolicy.java
                        TimeMapLRUPolicy.java
               cache/src/java/org/apache/avalon/excalibur/cache/store
                        AbstractCacheStore.java FlipSpacesStore.java
                        MemoryStore.java
               cache/src/java/org/apache/avalon/excalibur/cache/validator
                        AndValidator.java TimeoutValidator.java
               cache/src/test/org/apache/avalon/excalibur/cache/impl/test
                        AbstractCacheTestCase.java LRUCacheTestCase.java
                        TimeMapLRUCacheTestCase.java
               cache/src/test/org/apache/avalon/excalibur/cache/store/test
                        AbstractCacheStoreTestCase.java
                        FlipSpacesStoreTestCase.java
                        MemoryStoreTestCase.java
               cache/src/test/org/apache/avalon/excalibur/cache/validator/test
                        TimeoutValidatorTestCase.java
  Log:
  Repackaged.
  
  Revision  Changes    Path
  1.11      +1 -1      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/AbstractCache.java
  
  Index: AbstractCache.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/AbstractCache.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- AbstractCache.java        30 Mar 2002 07:11:14 -0000      1.10
  +++ AbstractCache.java        1 May 2002 04:01:32 -0000       1.11
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache;
  +package org.apache.excalibur.cache;
   
   import java.util.ArrayList;
   
  
  
  
  1.12      +1 -1      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/Cache.java
  
  Index: Cache.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/Cache.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- Cache.java        30 Mar 2002 07:24:19 -0000      1.11
  +++ Cache.java        1 May 2002 04:01:32 -0000       1.12
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache;
  +package org.apache.excalibur.cache;
   
   import org.apache.avalon.framework.component.Component;
   
  
  
  
  1.6       +1 -1      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/CacheEvent.java
  
  Index: CacheEvent.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/CacheEvent.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- CacheEvent.java   4 Apr 2002 10:53:00 -0000       1.5
  +++ CacheEvent.java   1 May 2002 04:01:32 -0000       1.6
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache;
  +package org.apache.excalibur.cache;
   
   import java.util.EventObject;
   
  
  
  
  1.6       +1 -1      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/CacheListener.java
  
  Index: CacheListener.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/CacheListener.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- CacheListener.java        27 Mar 2002 14:35:10 -0000      1.5
  +++ CacheListener.java        1 May 2002 04:01:32 -0000       1.6
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache;
  +package org.apache.excalibur.cache;
   
   import java.util.EventListener;
   
  
  
  
  1.9       +1 -1      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/CacheStore.java
  
  Index: CacheStore.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/CacheStore.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- CacheStore.java   30 Mar 2002 07:24:19 -0000      1.8
  +++ CacheStore.java   1 May 2002 04:01:32 -0000       1.9
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache;
  +package org.apache.excalibur.cache;
   
   /**
    * Store cached objects.
  
  
  
  1.5       +1 -1      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/CacheValidator.java
  
  Index: CacheValidator.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/CacheValidator.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- CacheValidator.java       27 Mar 2002 14:35:10 -0000      1.4
  +++ CacheValidator.java       1 May 2002 04:01:32 -0000       1.5
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache;
  +package org.apache.excalibur.cache;
   
   /**
    * Validate cached object.
  
  
  
  1.11      +1 -1      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/DefaultCache.java
  
  Index: DefaultCache.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/DefaultCache.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- DefaultCache.java 30 Mar 2002 07:24:19 -0000      1.10
  +++ DefaultCache.java 1 May 2002 04:01:32 -0000       1.11
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache;
  +package org.apache.excalibur.cache;
   
   /**
    * Default <code>Cache</code> implementation.
  
  
  
  1.8       +4 -4      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/LRUCache.java
  
  Index: LRUCache.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/LRUCache.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- LRUCache.java     3 Apr 2002 10:36:02 -0000       1.7
  +++ LRUCache.java     1 May 2002 04:01:32 -0000       1.8
  @@ -5,17 +5,17 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache;
  +package org.apache.excalibur.cache;
   
   /**
    * LRUCache.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]">Eung-ju Park</a>
  - * @version $Revision: 1.7 $ $Date: 2002/04/03 10:36:02 $
  - * @deprecated Use org.apache.avalon.excalibur.cache.impl.LRUCache
  + * @version $Revision: 1.8 $ $Date: 2002/05/01 04:01:32 $
  + * @deprecated Use org.apache.excalibur.cache.impl.LRUCache
    */
   public class LRUCache
  -    extends org.apache.avalon.excalibur.cache.impl.LRUCache
  +    extends org.apache.excalibur.cache.impl.LRUCache
   {
       public LRUCache( final int capacity )
       {
  
  
  
  1.5       +1 -1      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/ReplacementPolicy.java
  
  Index: ReplacementPolicy.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/ReplacementPolicy.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ReplacementPolicy.java    27 Mar 2002 14:35:10 -0000      1.4
  +++ ReplacementPolicy.java    1 May 2002 04:01:32 -0000       1.5
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache;
  +package org.apache.excalibur.cache;
   
   /**
    * Cache replacement policy.
  
  
  
  1.4       +1 -1      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/SynchronizedCache.java
  
  Index: SynchronizedCache.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/SynchronizedCache.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- SynchronizedCache.java    30 Mar 2002 07:24:19 -0000      1.3
  +++ SynchronizedCache.java    1 May 2002 04:01:32 -0000       1.4
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache;
  +package org.apache.excalibur.cache;
   
   import org.apache.avalon.framework.thread.ThreadSafe;
   
  
  
  
  1.3       +3 -3      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/TimeMapLRUCache.java
  
  Index: TimeMapLRUCache.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/TimeMapLRUCache.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- TimeMapLRUCache.java      3 Apr 2002 10:36:02 -0000       1.2
  +++ TimeMapLRUCache.java      1 May 2002 04:01:32 -0000       1.3
  @@ -5,16 +5,16 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache;
  +package org.apache.excalibur.cache;
   
   /**
    * TimeMapLRUCache.
    *
    * @author <a href="[EMAIL PROTECTED]">Alexis Agahi</a>
  - * @deprecated Use org.apache.avalon.excalibur.cache.impl.TimeMapLRUCache
  + * @deprecated Use org.apache.excalibur.cache.impl.TimeMapLRUCache
    */
   public class TimeMapLRUCache
  -    extends org.apache.avalon.excalibur.cache.impl.TimeMapLRUCache
  +    extends org.apache.excalibur.cache.impl.TimeMapLRUCache
   {
       public TimeMapLRUCache( final int capacity )
       {
  
  
  
  1.7       +1 -1      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/ValidatingCache.java
  
  Index: ValidatingCache.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/ValidatingCache.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ValidatingCache.java      4 Apr 2002 10:53:00 -0000       1.6
  +++ ValidatingCache.java      1 May 2002 04:01:32 -0000       1.7
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache;
  +package org.apache.excalibur.cache;
   
   /**
    * Validating cache proxy.
  
  
  
  1.2       +6 -6      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/impl/LRUCache.java
  
  Index: LRUCache.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/impl/LRUCache.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- LRUCache.java     3 Apr 2002 10:36:02 -0000       1.1
  +++ LRUCache.java     1 May 2002 04:01:32 -0000       1.2
  @@ -5,18 +5,18 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache.impl;
  +package org.apache.excalibur.cache.impl;
   
  -import org.apache.avalon.excalibur.cache.CacheStore;
  -import org.apache.avalon.excalibur.cache.DefaultCache;
  -import org.apache.avalon.excalibur.cache.policy.LRUPolicy;
  -import org.apache.avalon.excalibur.cache.store.MemoryStore;
  +import org.apache.excalibur.cache.CacheStore;
  +import org.apache.excalibur.cache.DefaultCache;
  +import org.apache.excalibur.cache.policy.LRUPolicy;
  +import org.apache.excalibur.cache.store.MemoryStore;
   
   /**
    * LRUCache.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]">Eung-ju Park</a>
  - * @version $Revision: 1.1 $ $Date: 2002/04/03 10:36:02 $
  + * @version $Revision: 1.2 $ $Date: 2002/05/01 04:01:32 $
    */
   public class LRUCache
       extends DefaultCache
  
  
  
  1.2       +6 -6      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/impl/TimeMapLRUCache.java
  
  Index: TimeMapLRUCache.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/impl/TimeMapLRUCache.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TimeMapLRUCache.java      3 Apr 2002 10:36:02 -0000       1.1
  +++ TimeMapLRUCache.java      1 May 2002 04:01:32 -0000       1.2
  @@ -5,18 +5,18 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache.impl;
  +package org.apache.excalibur.cache.impl;
   
  -import org.apache.avalon.excalibur.cache.CacheStore;
  -import org.apache.avalon.excalibur.cache.DefaultCache;
  -import org.apache.avalon.excalibur.cache.policy.TimeMapLRUPolicy;
  -import org.apache.avalon.excalibur.cache.store.MemoryStore;
  +import org.apache.excalibur.cache.CacheStore;
  +import org.apache.excalibur.cache.DefaultCache;
  +import org.apache.excalibur.cache.policy.TimeMapLRUPolicy;
  +import org.apache.excalibur.cache.store.MemoryStore;
   
   /**
    * TimeMapLRUCache.
    *
    * @author <a href="[EMAIL PROTECTED]">Alexis Agahi</a>
  - * @version $Revision: 1.1 $ $Date: 2002/04/03 10:36:02 $
  + * @version $Revision: 1.2 $ $Date: 2002/05/01 04:01:32 $
    */
   public class TimeMapLRUCache
       extends DefaultCache
  
  
  
  1.2       +1 -1      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/policy/FIFOPolicy.java
  
  Index: FIFOPolicy.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/policy/FIFOPolicy.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- FIFOPolicy.java   27 Jan 2002 04:59:28 -0000      1.1
  +++ FIFOPolicy.java   1 May 2002 04:01:32 -0000       1.2
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache.policy;
  +package org.apache.excalibur.cache.policy;
   
   /**
    * FIFO(First In First Out) replacement policy.
  
  
  
  1.2       +1 -1      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/policy/LRUPolicy.java
  
  Index: LRUPolicy.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/policy/LRUPolicy.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- LRUPolicy.java    27 Jan 2002 04:59:28 -0000      1.1
  +++ LRUPolicy.java    1 May 2002 04:01:32 -0000       1.2
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache.policy;
  +package org.apache.excalibur.cache.policy;
   
   /**
    * LRU(Least Recently Used) replacement policy.
  
  
  
  1.3       +2 -2      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/policy/ListBasedPolicy.java
  
  Index: ListBasedPolicy.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/policy/ListBasedPolicy.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ListBasedPolicy.java      27 Mar 2002 14:35:11 -0000      1.2
  +++ ListBasedPolicy.java      1 May 2002 04:01:32 -0000       1.3
  @@ -5,10 +5,10 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache.policy;
  +package org.apache.excalibur.cache.policy;
   
   import java.util.LinkedList;
  -import org.apache.avalon.excalibur.cache.ReplacementPolicy;
  +import org.apache.excalibur.cache.ReplacementPolicy;
   
   /**
    * FIXME: Remove or determine good name.
  
  
  
  1.5       +2 -2      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/policy/TimeMapLRUPolicy.java
  
  Index: TimeMapLRUPolicy.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/policy/TimeMapLRUPolicy.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- TimeMapLRUPolicy.java     4 Apr 2002 10:52:46 -0000       1.4
  +++ TimeMapLRUPolicy.java     1 May 2002 04:01:32 -0000       1.5
  @@ -5,11 +5,11 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache.policy;
  +package org.apache.excalibur.cache.policy;
   
   import java.util.HashMap;
   import java.util.TreeMap;
  -import org.apache.avalon.excalibur.cache.ReplacementPolicy;
  +import org.apache.excalibur.cache.ReplacementPolicy;
   
   /**
    * TimeMapLRU(Least Recently Used) replacement policy.
  
  
  
  1.2       +2 -2      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/store/AbstractCacheStore.java
  
  Index: AbstractCacheStore.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/store/AbstractCacheStore.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- AbstractCacheStore.java   27 Jan 2002 04:59:28 -0000      1.1
  +++ AbstractCacheStore.java   1 May 2002 04:01:32 -0000       1.2
  @@ -5,9 +5,9 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache.store;
  +package org.apache.excalibur.cache.store;
   
  -import org.apache.avalon.excalibur.cache.CacheStore;
  +import org.apache.excalibur.cache.CacheStore;
   
   /**
    *
  
  
  
  1.5       +1 -1      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/store/FlipSpacesStore.java
  
  Index: FlipSpacesStore.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/store/FlipSpacesStore.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- FlipSpacesStore.java      4 Apr 2002 10:53:00 -0000       1.4
  +++ FlipSpacesStore.java      1 May 2002 04:01:32 -0000       1.5
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache.store;
  +package org.apache.excalibur.cache.store;
   
   import java.util.ArrayList;
   import java.util.HashMap;
  
  
  
  1.4       +1 -1      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/store/MemoryStore.java
  
  Index: MemoryStore.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/store/MemoryStore.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- MemoryStore.java  27 Mar 2002 14:35:11 -0000      1.3
  +++ MemoryStore.java  1 May 2002 04:01:32 -0000       1.4
  @@ -5,7 +5,7 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache.store;
  +package org.apache.excalibur.cache.store;
   
   import java.util.HashMap;
   
  
  
  
  1.4       +2 -2      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/validator/AndValidator.java
  
  Index: AndValidator.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/validator/AndValidator.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- AndValidator.java 16 Mar 2002 00:05:44 -0000      1.3
  +++ AndValidator.java 1 May 2002 04:01:33 -0000       1.4
  @@ -5,9 +5,9 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache.validator;
  +package org.apache.excalibur.cache.validator;
   
  -import org.apache.avalon.excalibur.cache.CacheValidator;
  +import org.apache.excalibur.cache.CacheValidator;
   
   /**
    * @author <a href="mailto:[EMAIL PROTECTED]">Eung-ju Park</a>
  
  
  
  1.3       +4 -4      
jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/validator/TimeoutValidator.java
  
  Index: TimeoutValidator.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/java/org/apache/excalibur/cache/validator/TimeoutValidator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- TimeoutValidator.java     16 Mar 2002 00:05:44 -0000      1.2
  +++ TimeoutValidator.java     1 May 2002 04:01:33 -0000       1.3
  @@ -5,13 +5,13 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache.validator;
  +package org.apache.excalibur.cache.validator;
   
   import java.util.HashMap;
   import java.util.Map;
  -import org.apache.avalon.excalibur.cache.CacheEvent;
  -import org.apache.avalon.excalibur.cache.CacheListener;
  -import org.apache.avalon.excalibur.cache.CacheValidator;
  +import org.apache.excalibur.cache.CacheEvent;
  +import org.apache.excalibur.cache.CacheListener;
  +import org.apache.excalibur.cache.CacheValidator;
   
   /**
    * General timeout cache validator.
  
  
  
  1.2       +2 -2      
jakarta-avalon-excalibur/cache/src/test/org/apache/excalibur/cache/impl/test/AbstractCacheTestCase.java
  
  Index: AbstractCacheTestCase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/test/org/apache/excalibur/cache/impl/test/AbstractCacheTestCase.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- AbstractCacheTestCase.java        3 Apr 2002 10:36:02 -0000       1.1
  +++ AbstractCacheTestCase.java        1 May 2002 04:01:33 -0000       1.2
  @@ -5,10 +5,10 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache.impl.test;
  +package org.apache.excalibur.cache.impl.test;
   
   import junit.framework.TestCase;
  -import org.apache.avalon.excalibur.cache.Cache;
  +import org.apache.excalibur.cache.Cache;
   
   /**
    * TestCase for Cache.
  
  
  
  1.2       +2 -2      
jakarta-avalon-excalibur/cache/src/test/org/apache/excalibur/cache/impl/test/LRUCacheTestCase.java
  
  Index: LRUCacheTestCase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/test/org/apache/excalibur/cache/impl/test/LRUCacheTestCase.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- LRUCacheTestCase.java     3 Apr 2002 10:36:02 -0000       1.1
  +++ LRUCacheTestCase.java     1 May 2002 04:01:33 -0000       1.2
  @@ -5,9 +5,9 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache.impl.test;
  +package org.apache.excalibur.cache.impl.test;
   
  -import org.apache.avalon.excalibur.cache.LRUCache;
  +import org.apache.excalibur.cache.LRUCache;
   
   /**
    * TestCase for LRUCache.
  
  
  
  1.2       +3 -3      
jakarta-avalon-excalibur/cache/src/test/org/apache/excalibur/cache/impl/test/TimeMapLRUCacheTestCase.java
  
  Index: TimeMapLRUCacheTestCase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/test/org/apache/excalibur/cache/impl/test/TimeMapLRUCacheTestCase.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TimeMapLRUCacheTestCase.java      3 Apr 2002 10:36:02 -0000       1.1
  +++ TimeMapLRUCacheTestCase.java      1 May 2002 04:01:33 -0000       1.2
  @@ -5,10 +5,10 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache.impl.test;
  +package org.apache.excalibur.cache.impl.test;
   
  -import org.apache.avalon.excalibur.cache.Cache;
  -import org.apache.avalon.excalibur.cache.TimeMapLRUCache;
  +import org.apache.excalibur.cache.Cache;
  +import org.apache.excalibur.cache.TimeMapLRUCache;
   
   /**
    * TestCase for TimeMapLRUCache
  
  
  
  1.5       +2 -2      
jakarta-avalon-excalibur/cache/src/test/org/apache/excalibur/cache/store/test/AbstractCacheStoreTestCase.java
  
  Index: AbstractCacheStoreTestCase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/test/org/apache/excalibur/cache/store/test/AbstractCacheStoreTestCase.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- AbstractCacheStoreTestCase.java   30 Mar 2002 16:34:15 -0000      1.4
  +++ AbstractCacheStoreTestCase.java   1 May 2002 04:01:33 -0000       1.5
  @@ -5,10 +5,10 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache.store.test;
  +package org.apache.excalibur.cache.store.test;
   
   import junit.framework.TestCase;
  -import org.apache.avalon.excalibur.cache.CacheStore;
  +import org.apache.excalibur.cache.CacheStore;
   
   /**
    * TestCase for CacheStore.
  
  
  
  1.4       +2 -2      
jakarta-avalon-excalibur/cache/src/test/org/apache/excalibur/cache/store/test/FlipSpacesStoreTestCase.java
  
  Index: FlipSpacesStoreTestCase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/test/org/apache/excalibur/cache/store/test/FlipSpacesStoreTestCase.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- FlipSpacesStoreTestCase.java      30 Mar 2002 16:34:15 -0000      1.3
  +++ FlipSpacesStoreTestCase.java      1 May 2002 04:01:33 -0000       1.4
  @@ -5,9 +5,9 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache.store.test;
  +package org.apache.excalibur.cache.store.test;
   
  -import org.apache.avalon.excalibur.cache.store.FlipSpacesStore;
  +import org.apache.excalibur.cache.store.FlipSpacesStore;
   
   /**
    * TestCase for FlipSpacesStore.
  
  
  
  1.4       +2 -2      
jakarta-avalon-excalibur/cache/src/test/org/apache/excalibur/cache/store/test/MemoryStoreTestCase.java
  
  Index: MemoryStoreTestCase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/test/org/apache/excalibur/cache/store/test/MemoryStoreTestCase.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- MemoryStoreTestCase.java  30 Mar 2002 16:34:15 -0000      1.3
  +++ MemoryStoreTestCase.java  1 May 2002 04:01:33 -0000       1.4
  @@ -5,9 +5,9 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache.store.test;
  +package org.apache.excalibur.cache.store.test;
   
  -import org.apache.avalon.excalibur.cache.store.MemoryStore;
  +import org.apache.excalibur.cache.store.MemoryStore;
   
   /**
    * TestCase for MemoryStore.
  
  
  
  1.8       +5 -5      
jakarta-avalon-excalibur/cache/src/test/org/apache/excalibur/cache/validator/test/TimeoutValidatorTestCase.java
  
  Index: TimeoutValidatorTestCase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/cache/src/test/org/apache/excalibur/cache/validator/test/TimeoutValidatorTestCase.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- TimeoutValidatorTestCase.java     3 Apr 2002 10:36:02 -0000       1.7
  +++ TimeoutValidatorTestCase.java     1 May 2002 04:01:33 -0000       1.8
  @@ -5,13 +5,13 @@
    * version 1.1, a copy of which has been included  with this distribution in
    * the LICENSE.txt file.
    */
  -package org.apache.avalon.excalibur.cache.validator.test;
  +package org.apache.excalibur.cache.validator.test;
   
   import junit.framework.TestCase;
  -import org.apache.avalon.excalibur.cache.Cache;
  -import org.apache.avalon.excalibur.cache.ValidatingCache;
  -import org.apache.avalon.excalibur.cache.impl.LRUCache;
  -import org.apache.avalon.excalibur.cache.validator.TimeoutValidator;
  +import org.apache.excalibur.cache.Cache;
  +import org.apache.excalibur.cache.ValidatingCache;
  +import org.apache.excalibur.cache.impl.LRUCache;
  +import org.apache.excalibur.cache.validator.TimeoutValidator;
   
   /**
    * JUnit TestCase for TimeoutValidator.
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to