You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tv...@apache.org on 2013/08/25 16:17:28 UTC

svn commit: r1517295 [13/15] - in /commons/proper/jcs/trunk: ./ auxiliary-builds/javagroups/src/java/org/apache/commons/ auxiliary-builds/javagroups/src/java/org/apache/jcs/auxiliary/javagroups/ auxiliary-builds/javagroups/src/test/org/apache/commons/ ...

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/indexed/IndexedDiskCacheSameRegionConcurrentUnitTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/indexed/IndexedDiskCacheSameRegionConcurrentUnitTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/indexed/IndexedDiskCacheSameRegionConcurrentUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/indexed/IndexedDiskCacheSameRegionConcurrentUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.disk.indexed;
+package org.apache.commons.jcs.auxiliary.disk.indexed;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -27,8 +27,8 @@ import junit.extensions.ActiveTestSuite;
 import junit.framework.Test;
 import junit.framework.TestCase;
 
-import org.apache.jcs.JCS;
-import org.apache.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.JCS;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
 
 /**
  * Test which exercises the indexed disk cache. Runs three threads against the

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/indexed/IndexedDiskCacheSteadyLoadTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/indexed/IndexedDiskCacheSteadyLoadTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/indexed/IndexedDiskCacheSteadyLoadTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/indexed/IndexedDiskCacheSteadyLoadTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.disk.indexed;
+package org.apache.commons.jcs.auxiliary.disk.indexed;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -24,9 +24,9 @@ import java.util.Random;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.JCS;
-import org.apache.jcs.auxiliary.disk.DiskTestObject;
-import org.apache.jcs.utils.timing.ElapsedTimer;
+import org.apache.commons.jcs.JCS;
+import org.apache.commons.jcs.auxiliary.disk.DiskTestObject;
+import org.apache.commons.jcs.utils.timing.ElapsedTimer;
 
 /**
  * This allows you to put thousands of large objects into the disk cache and to force removes to

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/HsqlSetupTableUtil.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/HsqlSetupTableUtil.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/HsqlSetupTableUtil.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/HsqlSetupTableUtil.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/HsqlSetupTableUtil.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/HsqlSetupTableUtil.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/HsqlSetupTableUtil.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.disk.jdbc;
+package org.apache.commons.jcs.auxiliary.disk.jdbc;
 
 import java.sql.Connection;
 import java.sql.SQLException;

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheManagerUnitTest.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/JDBCDiskCacheManagerUnitTest.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheManagerUnitTest.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheManagerUnitTest.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/JDBCDiskCacheManagerUnitTest.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/JDBCDiskCacheManagerUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheManagerUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,12 +1,15 @@
-package org.apache.jcs.auxiliary.disk.jdbc;
+package org.apache.commons.jcs.auxiliary.disk.jdbc;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.auxiliary.MockCacheEventLogger;
-import org.apache.jcs.engine.behavior.IElementSerializer;
-import org.apache.jcs.engine.control.CompositeCacheManager;
-import org.apache.jcs.engine.control.MockElementSerializer;
-import org.apache.jcs.engine.logging.behavior.ICacheEventLogger;
+import org.apache.commons.jcs.auxiliary.MockCacheEventLogger;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCache;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCacheAttributes;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCacheManager;
+import org.apache.commons.jcs.engine.behavior.IElementSerializer;
+import org.apache.commons.jcs.engine.control.CompositeCacheManager;
+import org.apache.commons.jcs.engine.control.MockElementSerializer;
+import org.apache.commons.jcs.engine.logging.behavior.ICacheEventLogger;
 
 /** Unit tests for the manager */
 public class JDBCDiskCacheManagerUnitTest

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCachePoolAccessManagerUnitTest.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/JDBCDiskCachePoolAccessManagerUnitTest.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCachePoolAccessManagerUnitTest.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCachePoolAccessManagerUnitTest.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/JDBCDiskCachePoolAccessManagerUnitTest.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/JDBCDiskCachePoolAccessManagerUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCachePoolAccessManagerUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,9 +1,13 @@
-package org.apache.jcs.auxiliary.disk.jdbc;
+package org.apache.commons.jcs.auxiliary.disk.jdbc;
 
 import java.sql.Connection;
 import java.sql.DriverManager;
 import java.util.Properties;
 
+import org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCachePoolAccess;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCachePoolAccessAttributes;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCachePoolAccessManager;
+
 import junit.framework.TestCase;
 
 /** Unit tests for the pool manager */

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheRemovalUnitTest.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/JDBCDiskCacheRemovalUnitTest.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheRemovalUnitTest.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheRemovalUnitTest.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/JDBCDiskCacheRemovalUnitTest.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/JDBCDiskCacheRemovalUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheRemovalUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.disk.jdbc;
+package org.apache.commons.jcs.auxiliary.disk.jdbc;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -27,7 +27,7 @@ import java.util.Properties;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.JCS;
+import org.apache.commons.jcs.JCS;
 
 /** Tests for the removal functionality. */
 public class JDBCDiskCacheRemovalUnitTest

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheSharedPoolUnitTest.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/JDBCDiskCacheSharedPoolUnitTest.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheSharedPoolUnitTest.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheSharedPoolUnitTest.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/JDBCDiskCacheSharedPoolUnitTest.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/JDBCDiskCacheSharedPoolUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheSharedPoolUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.disk.jdbc;
+package org.apache.commons.jcs.auxiliary.disk.jdbc;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -28,8 +28,8 @@ import java.util.Set;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.JCS;
-import org.apache.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.JCS;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
 
 /**
  * Runs basic tests for the JDBC disk cache using a shared connection pool.

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheShrinkUnitTest.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/JDBCDiskCacheShrinkUnitTest.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheShrinkUnitTest.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheShrinkUnitTest.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/JDBCDiskCacheShrinkUnitTest.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/JDBCDiskCacheShrinkUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheShrinkUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.disk.jdbc;
+package org.apache.commons.jcs.auxiliary.disk.jdbc;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -27,9 +27,9 @@ import java.util.Properties;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.JCS;
-import org.apache.jcs.access.exception.CacheException;
-import org.apache.jcs.utils.timing.SleepUtil;
+import org.apache.commons.jcs.JCS;
+import org.apache.commons.jcs.access.exception.CacheException;
+import org.apache.commons.jcs.utils.timing.SleepUtil;
 
 /**
  * Runs basic tests for the JDBC disk cache.

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheUnitTest.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/JDBCDiskCacheUnitTest.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheUnitTest.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheUnitTest.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/JDBCDiskCacheUnitTest.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/JDBCDiskCacheUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/JDBCDiskCacheUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.disk.jdbc;
+package org.apache.commons.jcs.auxiliary.disk.jdbc;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -28,9 +28,14 @@ import java.util.Set;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.JCS;
-import org.apache.jcs.engine.behavior.ICacheElement;
-import org.apache.jcs.engine.control.MockCompositeCacheManager;
+import org.apache.commons.jcs.JCS;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCache;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCacheAttributes;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCachePoolAccess;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCachePoolAccessManager;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.TableState;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.engine.control.MockCompositeCacheManager;
 
 /**
  * Runs basic tests for the JDBC disk cache.

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/hsql/HSQLDiskCacheConcurrentUnitTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/hsql/HSQLDiskCacheConcurrentUnitTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/hsql/HSQLDiskCacheConcurrentUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/hsql/HSQLDiskCacheConcurrentUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.disk.jdbc.hsql;
+package org.apache.commons.jcs.auxiliary.disk.jdbc.hsql;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -27,8 +27,8 @@ import junit.extensions.ActiveTestSuite;
 import junit.framework.Test;
 import junit.framework.TestCase;
 
-import org.apache.jcs.JCS;
-import org.apache.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.JCS;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
 
 /**
  * Test which exercises the indexed disk cache. This one uses three different regions for thre

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/hsql/HSQLDiskCacheUnitTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/hsql/HSQLDiskCacheUnitTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/hsql/HSQLDiskCacheUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/hsql/HSQLDiskCacheUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.disk.jdbc.hsql;
+package org.apache.commons.jcs.auxiliary.disk.jdbc.hsql;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -25,9 +25,9 @@ import java.util.Set;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.JCS;
-import org.apache.jcs.access.exception.CacheException;
-import org.apache.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.JCS;
+import org.apache.commons.jcs.access.exception.CacheException;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
 
 /**
  * Test which exercises the indexed disk cache. This one uses three different regions for thre

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheHsqlBackedUnitTest.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheHsqlBackedUnitTest.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheHsqlBackedUnitTest.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheHsqlBackedUnitTest.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheHsqlBackedUnitTest.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheHsqlBackedUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheHsqlBackedUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.disk.jdbc.mysql;
+package org.apache.commons.jcs.auxiliary.disk.jdbc.mysql;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -30,8 +30,8 @@ import java.util.Set;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.JCS;
-import org.apache.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.JCS;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
 
 /**
  * Runs basic tests for the JDBC disk cache.

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheManagerUnitTest.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheManagerUnitTest.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheManagerUnitTest.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheManagerUnitTest.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheManagerUnitTest.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheManagerUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheManagerUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,12 +1,15 @@
-package org.apache.jcs.auxiliary.disk.jdbc.mysql;
+package org.apache.commons.jcs.auxiliary.disk.jdbc.mysql;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.auxiliary.MockCacheEventLogger;
-import org.apache.jcs.engine.behavior.IElementSerializer;
-import org.apache.jcs.engine.control.CompositeCacheManager;
-import org.apache.jcs.engine.control.MockElementSerializer;
-import org.apache.jcs.engine.logging.behavior.ICacheEventLogger;
+import org.apache.commons.jcs.auxiliary.MockCacheEventLogger;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.mysql.MySQLDiskCache;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.mysql.MySQLDiskCacheAttributes;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.mysql.MySQLDiskCacheManager;
+import org.apache.commons.jcs.engine.behavior.IElementSerializer;
+import org.apache.commons.jcs.engine.control.CompositeCacheManager;
+import org.apache.commons.jcs.engine.control.MockElementSerializer;
+import org.apache.commons.jcs.engine.logging.behavior.ICacheEventLogger;
 
 /** Unit tests for the manager */
 public class MySQLDiskCacheManagerUnitTest

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheUnitTest.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheUnitTest.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheUnitTest.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheUnitTest.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheUnitTest.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/MySQLDiskCacheUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.disk.jdbc.mysql;
+package org.apache.commons.jcs.auxiliary.disk.jdbc.mysql;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -21,8 +21,10 @@ package org.apache.jcs.auxiliary.disk.jd
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.auxiliary.disk.jdbc.TableState;
-import org.apache.jcs.engine.control.CompositeCacheManager;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.TableState;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.mysql.MySQLDiskCache;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.mysql.MySQLDiskCacheAttributes;
+import org.apache.commons.jcs.engine.control.CompositeCacheManager;
 
 /**
  * Simple tests for the MySQLDisk Cache.

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/MySQLTableOptimizerManualTester.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/mysql/MySQLTableOptimizerManualTester.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/MySQLTableOptimizerManualTester.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/MySQLTableOptimizerManualTester.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/mysql/MySQLTableOptimizerManualTester.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/disk/jdbc/mysql/MySQLTableOptimizerManualTester.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/MySQLTableOptimizerManualTester.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.disk.jdbc.mysql;
+package org.apache.commons.jcs.auxiliary.disk.jdbc.mysql;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -21,8 +21,10 @@ package org.apache.jcs.auxiliary.disk.jd
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.auxiliary.disk.jdbc.JDBCDiskCachePoolAccessFactory;
-import org.apache.jcs.auxiliary.disk.jdbc.TableState;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.JDBCDiskCachePoolAccessFactory;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.TableState;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.mysql.MySQLDiskCacheAttributes;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.mysql.MySQLTableOptimizer;
 
 /**
  * Hand run tests for the MySQL table optimizer.

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/util/ScheduleParserUtilUnitTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/util/ScheduleParserUtilUnitTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/util/ScheduleParserUtilUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/disk/jdbc/mysql/util/ScheduleParserUtilUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.disk.jdbc.mysql.util;
+package org.apache.commons.jcs.auxiliary.disk.jdbc.mysql.util;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -21,6 +21,9 @@ package org.apache.jcs.auxiliary.disk.jd
 
 import java.util.Date;
 
+import org.apache.commons.jcs.auxiliary.disk.jdbc.mysql.util.ScheduleFormatException;
+import org.apache.commons.jcs.auxiliary.disk.jdbc.mysql.util.ScheduleParser;
+
 import junit.framework.TestCase;
 
 /**

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/LateralCacheNoWaitFacadeUnitTest.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/LateralCacheNoWaitFacadeUnitTest.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/LateralCacheNoWaitFacadeUnitTest.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/LateralCacheNoWaitFacadeUnitTest.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/LateralCacheNoWaitFacadeUnitTest.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/lateral/LateralCacheNoWaitFacadeUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/LateralCacheNoWaitFacadeUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,8 +1,12 @@
-package org.apache.jcs.auxiliary.lateral;
+package org.apache.commons.jcs.auxiliary.lateral;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.auxiliary.lateral.behavior.ILateralCacheAttributes;
+import org.apache.commons.jcs.auxiliary.lateral.LateralCache;
+import org.apache.commons.jcs.auxiliary.lateral.LateralCacheAttributes;
+import org.apache.commons.jcs.auxiliary.lateral.LateralCacheNoWait;
+import org.apache.commons.jcs.auxiliary.lateral.LateralCacheNoWaitFacade;
+import org.apache.commons.jcs.auxiliary.lateral.behavior.ILateralCacheAttributes;
 
 /**
  * Tests for LateralCacheNoWaitFacade.

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/http/broadcast/LateralCacheTester.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/http/broadcast/LateralCacheTester.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/http/broadcast/LateralCacheTester.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/http/broadcast/LateralCacheTester.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.lateral.http.broadcast;
+package org.apache.commons.jcs.auxiliary.lateral.http.broadcast;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPConcurrentRandomTestUtil.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPConcurrentRandomTestUtil.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPConcurrentRandomTestUtil.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPConcurrentRandomTestUtil.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.lateral.socket.tcp;
+package org.apache.commons.jcs.auxiliary.lateral.socket.tcp;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -23,9 +23,11 @@ import java.util.Random;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.JCS;
-import org.apache.jcs.engine.CacheElement;
-import org.apache.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.JCS;
+import org.apache.commons.jcs.auxiliary.lateral.socket.tcp.LateralTCPService;
+import org.apache.commons.jcs.auxiliary.lateral.socket.tcp.TCPLateralCacheAttributes;
+import org.apache.commons.jcs.engine.CacheElement;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
 
 /**
  * @author Aaron Smuts

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListenerUnitTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListenerUnitTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListenerUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPDiscoveryListenerUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,21 +1,24 @@
-package org.apache.jcs.auxiliary.lateral.socket.tcp;
+package org.apache.commons.jcs.auxiliary.lateral.socket.tcp;
 
 import java.util.ArrayList;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.auxiliary.lateral.LateralCache;
-import org.apache.jcs.auxiliary.lateral.LateralCacheAttributes;
-import org.apache.jcs.auxiliary.lateral.LateralCacheNoWait;
-import org.apache.jcs.auxiliary.lateral.LateralCacheNoWaitFacade;
-import org.apache.jcs.auxiliary.lateral.behavior.ILateralCacheAttributes;
-import org.apache.jcs.auxiliary.lateral.socket.tcp.behavior.ITCPLateralCacheAttributes;
-import org.apache.jcs.engine.behavior.ICompositeCacheManager;
-import org.apache.jcs.engine.behavior.IElementSerializer;
-import org.apache.jcs.engine.control.CompositeCacheManager;
-import org.apache.jcs.engine.logging.MockCacheEventLogger;
-import org.apache.jcs.utils.discovery.DiscoveredService;
-import org.apache.jcs.utils.serialization.StandardSerializer;
+import org.apache.commons.jcs.auxiliary.lateral.LateralCache;
+import org.apache.commons.jcs.auxiliary.lateral.LateralCacheAttributes;
+import org.apache.commons.jcs.auxiliary.lateral.LateralCacheNoWait;
+import org.apache.commons.jcs.auxiliary.lateral.LateralCacheNoWaitFacade;
+import org.apache.commons.jcs.auxiliary.lateral.behavior.ILateralCacheAttributes;
+import org.apache.commons.jcs.auxiliary.lateral.socket.tcp.LateralTCPCacheManager;
+import org.apache.commons.jcs.auxiliary.lateral.socket.tcp.LateralTCPDiscoveryListener;
+import org.apache.commons.jcs.auxiliary.lateral.socket.tcp.TCPLateralCacheAttributes;
+import org.apache.commons.jcs.auxiliary.lateral.socket.tcp.behavior.ITCPLateralCacheAttributes;
+import org.apache.commons.jcs.engine.behavior.ICompositeCacheManager;
+import org.apache.commons.jcs.engine.behavior.IElementSerializer;
+import org.apache.commons.jcs.engine.control.CompositeCacheManager;
+import org.apache.commons.jcs.engine.logging.MockCacheEventLogger;
+import org.apache.commons.jcs.utils.discovery.DiscoveredService;
+import org.apache.commons.jcs.utils.serialization.StandardSerializer;
 
 /** Test for the listener that observers UDP discovery events. */
 public class LateralTCPDiscoveryListenerUnitTest

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPFilterRemoveHashCodeUnitTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPFilterRemoveHashCodeUnitTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPFilterRemoveHashCodeUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPFilterRemoveHashCodeUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.lateral.socket.tcp;
+package org.apache.commons.jcs.auxiliary.lateral.socket.tcp;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -23,9 +23,11 @@ import java.io.Serializable;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.JCS;
-import org.apache.jcs.engine.CacheElement;
-import org.apache.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.JCS;
+import org.apache.commons.jcs.auxiliary.lateral.socket.tcp.LateralTCPService;
+import org.apache.commons.jcs.auxiliary.lateral.socket.tcp.TCPLateralCacheAttributes;
+import org.apache.commons.jcs.engine.CacheElement;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
 
 /**
  * @author Aaron Smuts

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPIssueRemoveOnPutUnitTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPIssueRemoveOnPutUnitTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPIssueRemoveOnPutUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPIssueRemoveOnPutUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.lateral.socket.tcp;
+package org.apache.commons.jcs.auxiliary.lateral.socket.tcp;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -23,9 +23,11 @@ import java.util.Random;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.JCS;
-import org.apache.jcs.engine.CacheElement;
-import org.apache.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.JCS;
+import org.apache.commons.jcs.auxiliary.lateral.socket.tcp.LateralTCPService;
+import org.apache.commons.jcs.auxiliary.lateral.socket.tcp.TCPLateralCacheAttributes;
+import org.apache.commons.jcs.engine.CacheElement;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
 
 /**
  * Tests the issue remove on put fuctionality.

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPNoDeadLockConcurrentTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPNoDeadLockConcurrentTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPNoDeadLockConcurrentTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/LateralTCPNoDeadLockConcurrentTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.lateral.socket.tcp;
+package org.apache.commons.jcs.auxiliary.lateral.socket.tcp;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -23,8 +23,8 @@ import junit.extensions.ActiveTestSuite;
 import junit.framework.Test;
 import junit.framework.TestCase;
 
-import org.apache.jcs.JCS;
-import org.apache.jcs.engine.control.CompositeCacheManager;
+import org.apache.commons.jcs.JCS;
+import org.apache.commons.jcs.engine.control.CompositeCacheManager;
 
 /**
  * Test which exercises the tcp lateral cache. Runs two threads against the

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/MockLateralCache.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/MockLateralCache.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/MockLateralCache.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/MockLateralCache.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.lateral.socket.tcp;
+package org.apache.commons.jcs.auxiliary.lateral.socket.tcp;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -22,11 +22,11 @@ package org.apache.jcs.auxiliary.lateral
 import java.io.IOException;
 import java.io.Serializable;
 
-import org.apache.jcs.auxiliary.lateral.LateralCache;
-import org.apache.jcs.auxiliary.lateral.behavior.ILateralCacheAttributes;
-import org.apache.jcs.engine.CacheStatus;
-import org.apache.jcs.engine.behavior.ICache;
-import org.apache.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.auxiliary.lateral.LateralCache;
+import org.apache.commons.jcs.auxiliary.lateral.behavior.ILateralCacheAttributes;
+import org.apache.commons.jcs.engine.CacheStatus;
+import org.apache.commons.jcs.engine.behavior.ICache;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
 
 /**
  * For testing things that need a lateral cache

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/TestTCPLateralUnitTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/TestTCPLateralUnitTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/TestTCPLateralUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/lateral/socket/tcp/TestTCPLateralUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.lateral.socket.tcp;
+package org.apache.commons.jcs.auxiliary.lateral.socket.tcp;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -24,19 +24,23 @@ import java.util.Set;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.JCS;
-import org.apache.jcs.auxiliary.lateral.LateralCacheAttributes;
-import org.apache.jcs.auxiliary.lateral.LateralCommand;
-import org.apache.jcs.auxiliary.lateral.LateralElementDescriptor;
-import org.apache.jcs.engine.CacheElement;
-import org.apache.jcs.engine.behavior.ICacheElement;
-import org.apache.jcs.engine.behavior.ICompositeCacheManager;
-import org.apache.jcs.engine.control.CompositeCache;
-import org.apache.jcs.engine.control.CompositeCacheManager;
-import org.apache.jcs.engine.control.MockCompositeCacheManager;
-import org.apache.jcs.engine.control.group.GroupAttrName;
-import org.apache.jcs.engine.control.group.GroupId;
-import org.apache.jcs.utils.timing.SleepUtil;
+import org.apache.commons.jcs.JCS;
+import org.apache.commons.jcs.auxiliary.lateral.LateralCacheAttributes;
+import org.apache.commons.jcs.auxiliary.lateral.LateralCommand;
+import org.apache.commons.jcs.auxiliary.lateral.LateralElementDescriptor;
+import org.apache.commons.jcs.auxiliary.lateral.socket.tcp.LateralTCPListener;
+import org.apache.commons.jcs.auxiliary.lateral.socket.tcp.LateralTCPSender;
+import org.apache.commons.jcs.auxiliary.lateral.socket.tcp.LateralTCPService;
+import org.apache.commons.jcs.auxiliary.lateral.socket.tcp.TCPLateralCacheAttributes;
+import org.apache.commons.jcs.engine.CacheElement;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.engine.behavior.ICompositeCacheManager;
+import org.apache.commons.jcs.engine.control.CompositeCache;
+import org.apache.commons.jcs.engine.control.CompositeCacheManager;
+import org.apache.commons.jcs.engine.control.MockCompositeCacheManager;
+import org.apache.commons.jcs.engine.control.group.GroupAttrName;
+import org.apache.commons.jcs.engine.control.group.GroupId;
+import org.apache.commons.jcs.utils.timing.SleepUtil;
 
 /**
  * Basic unit tests for the sending and receiving portions of the lateral cache.

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/MockRemoteCacheClient.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/MockRemoteCacheClient.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/MockRemoteCacheClient.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/MockRemoteCacheClient.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/MockRemoteCacheClient.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/MockRemoteCacheClient.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/MockRemoteCacheClient.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote;
+package org.apache.commons.jcs.auxiliary.remote;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -27,16 +27,17 @@ import java.util.List;
 import java.util.Map;
 import java.util.Set;
 
+import org.apache.commons.jcs.auxiliary.AbstractAuxiliaryCache;
+import org.apache.commons.jcs.auxiliary.AuxiliaryCacheAttributes;
+import org.apache.commons.jcs.auxiliary.remote.RemoteCacheAttributes;
+import org.apache.commons.jcs.auxiliary.remote.behavior.IRemoteCacheClient;
+import org.apache.commons.jcs.auxiliary.remote.behavior.IRemoteCacheListener;
+import org.apache.commons.jcs.engine.CacheStatus;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.engine.behavior.ICacheServiceNonLocal;
+import org.apache.commons.jcs.engine.stats.behavior.IStats;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
-import org.apache.jcs.auxiliary.AbstractAuxiliaryCache;
-import org.apache.jcs.auxiliary.AuxiliaryCacheAttributes;
-import org.apache.jcs.auxiliary.remote.behavior.IRemoteCacheClient;
-import org.apache.jcs.auxiliary.remote.behavior.IRemoteCacheListener;
-import org.apache.jcs.engine.CacheStatus;
-import org.apache.jcs.engine.behavior.ICacheElement;
-import org.apache.jcs.engine.behavior.ICacheServiceNonLocal;
-import org.apache.jcs.engine.stats.behavior.IStats;
 
 /**
  * Used for testing the no wait.
@@ -79,7 +80,7 @@ public class MockRemoteCacheClient<K ext
      * Stores the last argument as fixed.
      * <p>
      * (non-Javadoc)
-     * @see org.apache.jcs.auxiliary.remote.behavior.IRemoteCacheClient#fixCache(org.apache.jcs.auxiliary.remote.behavior.ICacheServiceNonLocal)
+     * @see org.apache.commons.jcs.auxiliary.remote.behavior.IRemoteCacheClient#fixCache(org.apache.commons.jcs.auxiliary.remote.behavior.ICacheServiceNonLocal)
      */
     @SuppressWarnings("unchecked") // Don't know how to do this properly
     public void fixCache( ICacheServiceNonLocal<?, ?> remote )
@@ -107,7 +108,7 @@ public class MockRemoteCacheClient<K ext
      * Adds the argument to the updatedList.
      * <p>
      * (non-Javadoc)
-     * @see org.apache.jcs.auxiliary.AuxiliaryCache#update(org.apache.jcs.engine.behavior.ICacheElement)
+     * @see org.apache.commons.jcs.auxiliary.AuxiliaryCache#update(org.apache.commons.jcs.engine.behavior.ICacheElement)
      */
     public void update( ICacheElement<K, V> ce )
     {
@@ -118,7 +119,7 @@ public class MockRemoteCacheClient<K ext
      * Looks in the getSetupMap for a value.
      * <p>
      * (non-Javadoc)
-     * @see org.apache.jcs.auxiliary.AuxiliaryCache#get(java.io.Serializable)
+     * @see org.apache.commons.jcs.auxiliary.AuxiliaryCache#get(java.io.Serializable)
      */
     public ICacheElement<K, V> get( K key )
     {
@@ -143,7 +144,7 @@ public class MockRemoteCacheClient<K ext
      * Adds the key to the remove list.
      * <p>
      * (non-Javadoc)
-     * @see org.apache.jcs.auxiliary.AuxiliaryCache#remove(java.io.Serializable)
+     * @see org.apache.commons.jcs.auxiliary.AuxiliaryCache#remove(java.io.Serializable)
      */
     public boolean remove( K key )
     {
@@ -179,7 +180,7 @@ public class MockRemoteCacheClient<K ext
 
     /**
      * Returns the status setup variable. (non-Javadoc)
-     * @see org.apache.jcs.auxiliary.AuxiliaryCache#getStatus()
+     * @see org.apache.commons.jcs.auxiliary.AuxiliaryCache#getStatus()
      */
     public CacheStatus getStatus()
     {
@@ -225,7 +226,7 @@ public class MockRemoteCacheClient<K ext
      * Returns the setup attributes. By default they are not null.
      * <p>
      * (non-Javadoc)
-     * @see org.apache.jcs.auxiliary.AuxiliaryCache#getAuxiliaryCacheAttributes()
+     * @see org.apache.commons.jcs.auxiliary.AuxiliaryCache#getAuxiliaryCacheAttributes()
      */
     public AuxiliaryCacheAttributes getAuxiliaryCacheAttributes()
     {

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/MockRemoteCacheListener.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/MockRemoteCacheListener.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/MockRemoteCacheListener.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/MockRemoteCacheListener.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/MockRemoteCacheListener.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/MockRemoteCacheListener.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/MockRemoteCacheListener.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote;
+package org.apache.commons.jcs.auxiliary.remote;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -24,9 +24,9 @@ import java.io.Serializable;
 import java.util.LinkedList;
 import java.util.List;
 
-import org.apache.jcs.auxiliary.remote.behavior.IRemoteCacheListener;
-import org.apache.jcs.auxiliary.remote.server.behavior.RemoteType;
-import org.apache.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.auxiliary.remote.behavior.IRemoteCacheListener;
+import org.apache.commons.jcs.auxiliary.remote.server.behavior.RemoteType;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
 
 /**
  * For testing.

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/MockRemoteCacheService.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/MockRemoteCacheService.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/MockRemoteCacheService.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/MockRemoteCacheService.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/MockRemoteCacheService.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/MockRemoteCacheService.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/MockRemoteCacheService.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote;
+package org.apache.commons.jcs.auxiliary.remote;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -28,8 +28,8 @@ import java.util.List;
 import java.util.Map;
 import java.util.Set;
 
-import org.apache.jcs.engine.behavior.ICacheElement;
-import org.apache.jcs.engine.behavior.ICacheServiceNonLocal;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.engine.behavior.ICacheServiceNonLocal;
 
 /**
  * This is a mock impl of the remote cache service.
@@ -108,7 +108,7 @@ public class MockRemoteCacheService<K ex
      * Set the lastRemoveAllCacheName to the cacheName.
      * <p>
      * (non-Javadoc)
-     * @see org.apache.jcs.auxiliary.remote.behavior.ICacheServiceNonLocal#removeAll(java.lang.String,
+     * @see org.apache.commons.jcs.auxiliary.remote.behavior.ICacheServiceNonLocal#removeAll(java.lang.String,
      *      long)
      */
     public void removeAll( String cacheName, long requesterId )

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteCacheClientTester.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/RemoteCacheClientTester.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteCacheClientTester.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteCacheClientTester.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/RemoteCacheClientTester.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/RemoteCacheClientTester.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteCacheClientTester.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote;
+package org.apache.commons.jcs.auxiliary.remote;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -28,15 +28,15 @@ import java.rmi.registry.Registry;
 import java.rmi.server.ExportException;
 import java.rmi.server.UnicastRemoteObject;
 
-import org.apache.jcs.access.exception.CacheException;
-import org.apache.jcs.access.exception.ObjectExistsException;
-import org.apache.jcs.auxiliary.remote.behavior.IRemoteCacheConstants;
-import org.apache.jcs.auxiliary.remote.behavior.IRemoteCacheListener;
-import org.apache.jcs.auxiliary.remote.server.behavior.RemoteType;
-import org.apache.jcs.engine.CacheElement;
-import org.apache.jcs.engine.behavior.ICacheElement;
-import org.apache.jcs.engine.behavior.ICacheObserver;
-import org.apache.jcs.engine.behavior.ICacheService;
+import org.apache.commons.jcs.access.exception.CacheException;
+import org.apache.commons.jcs.access.exception.ObjectExistsException;
+import org.apache.commons.jcs.auxiliary.remote.behavior.IRemoteCacheConstants;
+import org.apache.commons.jcs.auxiliary.remote.behavior.IRemoteCacheListener;
+import org.apache.commons.jcs.auxiliary.remote.server.behavior.RemoteType;
+import org.apache.commons.jcs.engine.CacheElement;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.engine.behavior.ICacheObserver;
+import org.apache.commons.jcs.engine.behavior.ICacheService;
 
 /**
  * Manual tester.

Propchange: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteCacheClientTester.java
------------------------------------------------------------------------------
    cvs2svn:cvs-rev = 1.5

Propchange: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteCacheClientTester.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteCacheClientTester.java
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteCacheListenerUnitTest.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/RemoteCacheListenerUnitTest.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteCacheListenerUnitTest.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteCacheListenerUnitTest.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/RemoteCacheListenerUnitTest.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/RemoteCacheListenerUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteCacheListenerUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote;
+package org.apache.commons.jcs.auxiliary.remote;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -21,17 +21,19 @@ package org.apache.jcs.auxiliary.remote;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.auxiliary.remote.behavior.IRemoteCacheAttributes;
-import org.apache.jcs.engine.CacheElementSerialized;
-import org.apache.jcs.engine.ElementAttributes;
-import org.apache.jcs.engine.behavior.ICache;
-import org.apache.jcs.engine.behavior.ICacheElement;
-import org.apache.jcs.engine.behavior.ICacheElementSerialized;
-import org.apache.jcs.engine.behavior.ICompositeCacheManager;
-import org.apache.jcs.engine.behavior.IElementAttributes;
-import org.apache.jcs.engine.behavior.IElementSerializer;
-import org.apache.jcs.engine.control.MockCompositeCacheManager;
-import org.apache.jcs.utils.serialization.StandardSerializer;
+import org.apache.commons.jcs.auxiliary.remote.RemoteCacheAttributes;
+import org.apache.commons.jcs.auxiliary.remote.RemoteCacheListener;
+import org.apache.commons.jcs.auxiliary.remote.behavior.IRemoteCacheAttributes;
+import org.apache.commons.jcs.engine.CacheElementSerialized;
+import org.apache.commons.jcs.engine.ElementAttributes;
+import org.apache.commons.jcs.engine.behavior.ICache;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.engine.behavior.ICacheElementSerialized;
+import org.apache.commons.jcs.engine.behavior.ICompositeCacheManager;
+import org.apache.commons.jcs.engine.behavior.IElementAttributes;
+import org.apache.commons.jcs.engine.behavior.IElementSerializer;
+import org.apache.commons.jcs.engine.control.MockCompositeCacheManager;
+import org.apache.commons.jcs.utils.serialization.StandardSerializer;
 
 /**
  * Tests for the remote cache listener.

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteCacheNoWaitUnitTest.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/RemoteCacheNoWaitUnitTest.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteCacheNoWaitUnitTest.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteCacheNoWaitUnitTest.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/RemoteCacheNoWaitUnitTest.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/RemoteCacheNoWaitUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteCacheNoWaitUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote;
+package org.apache.commons.jcs.auxiliary.remote;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -26,11 +26,12 @@ import java.util.Set;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.engine.CacheElement;
-import org.apache.jcs.engine.CacheStatus;
-import org.apache.jcs.engine.behavior.ICacheElement;
-import org.apache.jcs.engine.behavior.ICacheEventQueue;
-import org.apache.jcs.utils.timing.SleepUtil;
+import org.apache.commons.jcs.auxiliary.remote.RemoteCacheNoWait;
+import org.apache.commons.jcs.engine.CacheElement;
+import org.apache.commons.jcs.engine.CacheStatus;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.engine.behavior.ICacheEventQueue;
+import org.apache.commons.jcs.utils.timing.SleepUtil;
 
 /**
  * Unit tests for the remote cache no wait. The no wait manages a queue on top of the client.

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteCacheUnitTest.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/RemoteCacheUnitTest.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteCacheUnitTest.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteCacheUnitTest.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/RemoteCacheUnitTest.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/RemoteCacheUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteCacheUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote;
+package org.apache.commons.jcs.auxiliary.remote;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -24,13 +24,15 @@ import java.util.Map;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.auxiliary.MockCacheEventLogger;
-import org.apache.jcs.auxiliary.remote.behavior.IRemoteCacheAttributes;
-import org.apache.jcs.engine.CacheElement;
-import org.apache.jcs.engine.ZombieCacheServiceNonLocal;
-import org.apache.jcs.engine.behavior.ICacheElement;
-import org.apache.jcs.engine.behavior.ICacheElementSerialized;
-import org.apache.jcs.utils.serialization.SerializationConversionUtil;
+import org.apache.commons.jcs.auxiliary.MockCacheEventLogger;
+import org.apache.commons.jcs.auxiliary.remote.RemoteCache;
+import org.apache.commons.jcs.auxiliary.remote.RemoteCacheAttributes;
+import org.apache.commons.jcs.auxiliary.remote.behavior.IRemoteCacheAttributes;
+import org.apache.commons.jcs.engine.CacheElement;
+import org.apache.commons.jcs.engine.ZombieCacheServiceNonLocal;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.engine.behavior.ICacheElementSerialized;
+import org.apache.commons.jcs.utils.serialization.SerializationConversionUtil;
 
 /**
  * Unit Tests for the Remote Cache.

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteUtilsUnitTest.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/RemoteUtilsUnitTest.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteUtilsUnitTest.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteUtilsUnitTest.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/RemoteUtilsUnitTest.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/RemoteUtilsUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/RemoteUtilsUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote;
+package org.apache.commons.jcs.auxiliary.remote;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -21,6 +21,8 @@ package org.apache.jcs.auxiliary.remote;
 
 import java.rmi.RemoteException;
 
+import org.apache.commons.jcs.auxiliary.remote.RemoteUtils;
+
 import junit.framework.TestCase;
 
 /**

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/TestRemoteCache.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/TestRemoteCache.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/TestRemoteCache.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/TestRemoteCache.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/TestRemoteCache.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/TestRemoteCache.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/TestRemoteCache.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote;
+package org.apache.commons.jcs.auxiliary.remote;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -21,16 +21,19 @@ package org.apache.jcs.auxiliary.remote;
 
 import junit.framework.TestCase;
 
+import org.apache.commons.jcs.JCS;
+import org.apache.commons.jcs.auxiliary.AuxiliaryCache;
+import org.apache.commons.jcs.auxiliary.MockCacheEventLogger;
+import org.apache.commons.jcs.auxiliary.remote.RemoteCacheAttributes;
+import org.apache.commons.jcs.auxiliary.remote.RemoteCacheManager;
+import org.apache.commons.jcs.auxiliary.remote.RemoteUtils;
+import org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheServerFactory;
+import org.apache.commons.jcs.engine.CacheElement;
+import org.apache.commons.jcs.engine.behavior.ICompositeCacheManager;
+import org.apache.commons.jcs.engine.control.MockCompositeCacheManager;
+import org.apache.commons.jcs.engine.control.MockElementSerializer;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
-import org.apache.jcs.JCS;
-import org.apache.jcs.auxiliary.AuxiliaryCache;
-import org.apache.jcs.auxiliary.MockCacheEventLogger;
-import org.apache.jcs.auxiliary.remote.server.RemoteCacheServerFactory;
-import org.apache.jcs.engine.CacheElement;
-import org.apache.jcs.engine.behavior.ICompositeCacheManager;
-import org.apache.jcs.engine.control.MockCompositeCacheManager;
-import org.apache.jcs.engine.control.MockElementSerializer;
 
 /**
  * @author Aaron SMuts

Copied: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/ZombieRemoteCacheServiceUnitTest.java (from r1479115, commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/ZombieRemoteCacheServiceUnitTest.java)
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/ZombieRemoteCacheServiceUnitTest.java?p2=commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/ZombieRemoteCacheServiceUnitTest.java&p1=commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/ZombieRemoteCacheServiceUnitTest.java&r1=1479115&r2=1517295&rev=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/jcs/auxiliary/remote/ZombieRemoteCacheServiceUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/ZombieRemoteCacheServiceUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote;
+package org.apache.commons.jcs.auxiliary.remote;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -21,9 +21,9 @@ package org.apache.jcs.auxiliary.remote;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.engine.CacheElement;
-import org.apache.jcs.engine.ZombieCacheServiceNonLocal;
-import org.apache.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.engine.CacheElement;
+import org.apache.commons.jcs.engine.ZombieCacheServiceNonLocal;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
 
 /**
  * Tests for the zombie remote cache service.

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/MockRemoteCacheDispatcher.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/MockRemoteCacheDispatcher.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/MockRemoteCacheDispatcher.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/MockRemoteCacheDispatcher.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote.http.client;
+package org.apache.commons.jcs.auxiliary.remote.http.client;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -22,9 +22,9 @@ package org.apache.jcs.auxiliary.remote.
 import java.io.IOException;
 import java.io.Serializable;
 
-import org.apache.jcs.auxiliary.remote.behavior.IRemoteCacheDispatcher;
-import org.apache.jcs.auxiliary.remote.value.RemoteCacheRequest;
-import org.apache.jcs.auxiliary.remote.value.RemoteCacheResponse;
+import org.apache.commons.jcs.auxiliary.remote.behavior.IRemoteCacheDispatcher;
+import org.apache.commons.jcs.auxiliary.remote.value.RemoteCacheRequest;
+import org.apache.commons.jcs.auxiliary.remote.value.RemoteCacheResponse;
 
 /** For testing the service. */
 public class MockRemoteCacheDispatcher

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/RemoteHttpCacheClientUnitTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/RemoteHttpCacheClientUnitTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/RemoteHttpCacheClientUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/RemoteHttpCacheClientUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote.http.client;
+package org.apache.commons.jcs.auxiliary.remote.http.client;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -27,10 +27,12 @@ import java.util.Set;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.auxiliary.remote.value.RemoteCacheResponse;
-import org.apache.jcs.auxiliary.remote.value.RemoteRequestType;
-import org.apache.jcs.engine.CacheElement;
-import org.apache.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.auxiliary.remote.http.client.RemoteHttpCacheAttributes;
+import org.apache.commons.jcs.auxiliary.remote.http.client.RemoteHttpCacheClient;
+import org.apache.commons.jcs.auxiliary.remote.value.RemoteCacheResponse;
+import org.apache.commons.jcs.auxiliary.remote.value.RemoteRequestType;
+import org.apache.commons.jcs.engine.CacheElement;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
 
 /** Unit tests for the client. */
 public class RemoteHttpCacheClientUnitTest

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/RemoteHttpCacheDispatcherUniTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/RemoteHttpCacheDispatcherUniTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/RemoteHttpCacheDispatcherUniTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/RemoteHttpCacheDispatcherUniTest.java Sun Aug 25 14:17:11 2013
@@ -1,9 +1,11 @@
-package org.apache.jcs.auxiliary.remote.http.client;
+package org.apache.commons.jcs.auxiliary.remote.http.client;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.auxiliary.remote.value.RemoteCacheRequest;
-import org.apache.jcs.auxiliary.remote.value.RemoteRequestType;
+import org.apache.commons.jcs.auxiliary.remote.http.client.RemoteHttpCacheAttributes;
+import org.apache.commons.jcs.auxiliary.remote.http.client.RemoteHttpCacheDispatcher;
+import org.apache.commons.jcs.auxiliary.remote.value.RemoteCacheRequest;
+import org.apache.commons.jcs.auxiliary.remote.value.RemoteRequestType;
 
 /** Unit tests for the dispatcher. */
 public class RemoteHttpCacheDispatcherUniTest

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/RemoteHttpCacheManagerUnitTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/RemoteHttpCacheManagerUnitTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/RemoteHttpCacheManagerUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/RemoteHttpCacheManagerUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote.http.client;
+package org.apache.commons.jcs.auxiliary.remote.http.client;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -21,11 +21,14 @@ package org.apache.jcs.auxiliary.remote.
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.auxiliary.AuxiliaryCache;
-import org.apache.jcs.auxiliary.remote.http.client.behavior.IRemoteHttpCacheClient;
-import org.apache.jcs.engine.behavior.ICompositeCacheManager;
-import org.apache.jcs.engine.behavior.IElementSerializer;
-import org.apache.jcs.engine.logging.behavior.ICacheEventLogger;
+import org.apache.commons.jcs.auxiliary.AuxiliaryCache;
+import org.apache.commons.jcs.auxiliary.remote.http.client.RemoteHttpCacheAttributes;
+import org.apache.commons.jcs.auxiliary.remote.http.client.RemoteHttpCacheClient;
+import org.apache.commons.jcs.auxiliary.remote.http.client.RemoteHttpCacheManager;
+import org.apache.commons.jcs.auxiliary.remote.http.client.behavior.IRemoteHttpCacheClient;
+import org.apache.commons.jcs.engine.behavior.ICompositeCacheManager;
+import org.apache.commons.jcs.engine.behavior.IElementSerializer;
+import org.apache.commons.jcs.engine.logging.behavior.ICacheEventLogger;
 
 /** Unit tests for the manager. */
 public class RemoteHttpCacheManagerUnitTest

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/RemoteHttpCacheManualTester.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/RemoteHttpCacheManualTester.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/RemoteHttpCacheManualTester.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/client/RemoteHttpCacheManualTester.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote.http.client;
+package org.apache.commons.jcs.auxiliary.remote.http.client;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -21,7 +21,7 @@ package org.apache.jcs.auxiliary.remote.
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.JCS;
+import org.apache.commons.jcs.JCS;
 
 /** Manual tester for a JCS instance configured to use the http client. */
 public class RemoteHttpCacheManualTester

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/server/RemoteCacheServiceAdaptorUnitTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/server/RemoteCacheServiceAdaptorUnitTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/server/RemoteCacheServiceAdaptorUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/server/RemoteCacheServiceAdaptorUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote.http.server;
+package org.apache.commons.jcs.auxiliary.remote.http.server;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -24,11 +24,12 @@ import java.util.Set;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.auxiliary.remote.MockRemoteCacheService;
-import org.apache.jcs.auxiliary.remote.util.RemoteCacheRequestFactory;
-import org.apache.jcs.auxiliary.remote.value.RemoteCacheRequest;
-import org.apache.jcs.auxiliary.remote.value.RemoteCacheResponse;
-import org.apache.jcs.engine.CacheElement;
+import org.apache.commons.jcs.auxiliary.remote.MockRemoteCacheService;
+import org.apache.commons.jcs.auxiliary.remote.http.server.RemoteCacheServiceAdaptor;
+import org.apache.commons.jcs.auxiliary.remote.util.RemoteCacheRequestFactory;
+import org.apache.commons.jcs.auxiliary.remote.value.RemoteCacheRequest;
+import org.apache.commons.jcs.auxiliary.remote.value.RemoteCacheResponse;
+import org.apache.commons.jcs.engine.CacheElement;
 
 /** Unit tests for the adaptor. */
 public class RemoteCacheServiceAdaptorUnitTest

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/server/RemoteHttpCacheServiceUnitTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/server/RemoteHttpCacheServiceUnitTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/server/RemoteHttpCacheServiceUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/server/RemoteHttpCacheServiceUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote.http.server;
+package org.apache.commons.jcs.auxiliary.remote.http.server;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -23,9 +23,11 @@ import java.util.HashSet;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.auxiliary.MockCacheEventLogger;
-import org.apache.jcs.engine.CacheElement;
-import org.apache.jcs.engine.control.MockCompositeCacheManager;
+import org.apache.commons.jcs.auxiliary.MockCacheEventLogger;
+import org.apache.commons.jcs.auxiliary.remote.http.server.RemoteHttpCacheServerAttributes;
+import org.apache.commons.jcs.auxiliary.remote.http.server.RemoteHttpCacheService;
+import org.apache.commons.jcs.engine.CacheElement;
+import org.apache.commons.jcs.engine.control.MockCompositeCacheManager;
 
 /** Unit tests for the service. */
 public class RemoteHttpCacheServiceUnitTest

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/server/RemoteHttpCacheSeviceFactoryUnitTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/server/RemoteHttpCacheSeviceFactoryUnitTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/server/RemoteHttpCacheSeviceFactoryUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/http/server/RemoteHttpCacheSeviceFactoryUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote.http.server;
+package org.apache.commons.jcs.auxiliary.remote.http.server;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -23,10 +23,13 @@ import java.util.Properties;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.auxiliary.AuxiliaryCacheConfigurator;
-import org.apache.jcs.auxiliary.remote.http.behavior.IRemoteHttpCacheConstants;
-import org.apache.jcs.engine.control.MockCompositeCacheManager;
-import org.apache.jcs.engine.logging.MockCacheEventLogger;
+import org.apache.commons.jcs.auxiliary.AuxiliaryCacheConfigurator;
+import org.apache.commons.jcs.auxiliary.remote.http.behavior.IRemoteHttpCacheConstants;
+import org.apache.commons.jcs.auxiliary.remote.http.server.RemoteHttpCacheServerAttributes;
+import org.apache.commons.jcs.auxiliary.remote.http.server.RemoteHttpCacheService;
+import org.apache.commons.jcs.auxiliary.remote.http.server.RemoteHttpCacheSeviceFactory;
+import org.apache.commons.jcs.engine.control.MockCompositeCacheManager;
+import org.apache.commons.jcs.engine.logging.MockCacheEventLogger;
 
 /** Unit tests for the factory */
 public class RemoteHttpCacheSeviceFactoryUnitTest

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/BasicRemoteCacheClientServerUnitTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/BasicRemoteCacheClientServerUnitTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/BasicRemoteCacheClientServerUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/BasicRemoteCacheClientServerUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote.server;
+package org.apache.commons.jcs.auxiliary.remote.server;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -21,16 +21,17 @@ package org.apache.jcs.auxiliary.remote.
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.auxiliary.AuxiliaryCache;
-import org.apache.jcs.auxiliary.MockCacheEventLogger;
-import org.apache.jcs.auxiliary.remote.MockRemoteCacheListener;
-import org.apache.jcs.auxiliary.remote.RemoteCacheAttributes;
-import org.apache.jcs.auxiliary.remote.RemoteCacheManager;
-import org.apache.jcs.engine.CacheElement;
-import org.apache.jcs.engine.behavior.ICacheElement;
-import org.apache.jcs.engine.control.MockCompositeCacheManager;
-import org.apache.jcs.engine.control.MockElementSerializer;
-import org.apache.jcs.utils.timing.SleepUtil;
+import org.apache.commons.jcs.auxiliary.AuxiliaryCache;
+import org.apache.commons.jcs.auxiliary.MockCacheEventLogger;
+import org.apache.commons.jcs.auxiliary.remote.MockRemoteCacheListener;
+import org.apache.commons.jcs.auxiliary.remote.RemoteCacheAttributes;
+import org.apache.commons.jcs.auxiliary.remote.RemoteCacheManager;
+import org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheServer;
+import org.apache.commons.jcs.engine.CacheElement;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.engine.control.MockCompositeCacheManager;
+import org.apache.commons.jcs.engine.control.MockElementSerializer;
+import org.apache.commons.jcs.utils.timing.SleepUtil;
 
 /**
  * These tests startup the remote server and make requests to it.

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/MockRMISocketFactory.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/MockRMISocketFactory.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/MockRMISocketFactory.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/MockRMISocketFactory.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote.server;
+package org.apache.commons.jcs.auxiliary.remote.server;
 
 import java.io.IOException;
 import java.io.Serializable;

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RegistryKeepAliveRunnerUnitTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RegistryKeepAliveRunnerUnitTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RegistryKeepAliveRunnerUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RegistryKeepAliveRunnerUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,8 +1,9 @@
-package org.apache.jcs.auxiliary.remote.server;
+package org.apache.commons.jcs.auxiliary.remote.server;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.auxiliary.MockCacheEventLogger;
+import org.apache.commons.jcs.auxiliary.MockCacheEventLogger;
+import org.apache.commons.jcs.auxiliary.remote.server.RegistryKeepAliveRunner;
 
 /** Unit tests for the registry keep alive runner. */
 public class RegistryKeepAliveRunnerUnitTest

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerAttributesUnitTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerAttributesUnitTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerAttributesUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerAttributesUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote.server;
+package org.apache.commons.jcs.auxiliary.remote.server;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -21,7 +21,8 @@ package org.apache.jcs.auxiliary.remote.
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.auxiliary.remote.server.behavior.RemoteType;
+import org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheServerAttributes;
+import org.apache.commons.jcs.auxiliary.remote.server.behavior.RemoteType;
 
 /**
  * Tests for the remote cache server attributes.

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerFactoryUnitTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerFactoryUnitTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerFactoryUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerFactoryUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,11 +1,14 @@
-package org.apache.jcs.auxiliary.remote.server;
+package org.apache.commons.jcs.auxiliary.remote.server;
 
 import java.rmi.server.RMISocketFactory;
 import java.util.Properties;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.auxiliary.remote.behavior.IRemoteCacheConstants;
+import org.apache.commons.jcs.auxiliary.remote.behavior.IRemoteCacheConstants;
+import org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheServerAttributes;
+import org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheServerFactory;
+import org.apache.commons.jcs.auxiliary.remote.server.TimeoutConfigurableRMIScoketFactory;
 
 /** Unit tests for the factory */
 public class RemoteCacheServerFactoryUnitTest

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerStartupUtil.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerStartupUtil.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerStartupUtil.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerStartupUtil.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote.server;
+package org.apache.commons.jcs.auxiliary.remote.server;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -27,9 +27,11 @@ import java.rmi.RemoteException;
 import java.rmi.registry.LocateRegistry;
 import java.util.Properties;
 
+import org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheServer;
+import org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheServerFactory;
+import org.apache.commons.jcs.utils.props.PropertyLoader;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
-import org.apache.jcs.utils.props.PropertyLoader;
 
 /**
  *Starts the registry and runs the server via the factory.

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerUnitTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerUnitTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,4 +1,4 @@
-package org.apache.jcs.auxiliary.remote.server;
+package org.apache.commons.jcs.auxiliary.remote.server;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -25,13 +25,15 @@ import java.util.List;
 
 import junit.framework.TestCase;
 
-import org.apache.jcs.auxiliary.MockCacheEventLogger;
-import org.apache.jcs.auxiliary.remote.MockRemoteCacheListener;
-import org.apache.jcs.auxiliary.remote.server.behavior.IRemoteCacheServerAttributes;
-import org.apache.jcs.auxiliary.remote.server.behavior.RemoteType;
-import org.apache.jcs.engine.CacheElement;
-import org.apache.jcs.engine.behavior.ICacheElement;
-import org.apache.jcs.utils.timing.SleepUtil;
+import org.apache.commons.jcs.auxiliary.MockCacheEventLogger;
+import org.apache.commons.jcs.auxiliary.remote.MockRemoteCacheListener;
+import org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheServer;
+import org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheServerAttributes;
+import org.apache.commons.jcs.auxiliary.remote.server.behavior.IRemoteCacheServerAttributes;
+import org.apache.commons.jcs.auxiliary.remote.server.behavior.RemoteType;
+import org.apache.commons.jcs.engine.CacheElement;
+import org.apache.commons.jcs.engine.behavior.ICacheElement;
+import org.apache.commons.jcs.utils.timing.SleepUtil;
 
 /**
  * Since the server does not know that it is a server, it is easy to unit test. The factory does all

Modified: commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/TimeoutConfigurableRMIScoketFactoryUnitTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/TimeoutConfigurableRMIScoketFactoryUnitTest.java?rev=1517295&r1=1479115&r2=1517295&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/TimeoutConfigurableRMIScoketFactoryUnitTest.java (original)
+++ commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/TimeoutConfigurableRMIScoketFactoryUnitTest.java Sun Aug 25 14:17:11 2013
@@ -1,9 +1,11 @@
-package org.apache.jcs.auxiliary.remote.server;
+package org.apache.commons.jcs.auxiliary.remote.server;
 
 import java.io.IOException;
 import java.net.ServerSocket;
 import java.net.Socket;
 
+import org.apache.commons.jcs.auxiliary.remote.server.TimeoutConfigurableRMIScoketFactory;
+
 import junit.framework.TestCase;
 
 /** Unit tests for the custom factory */