Copied: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/AbstractProxyFactoryTestCase.java
 (from r965003, 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy/AbstractProxyFactoryTestCase.java)
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/AbstractProxyFactoryTestCase.java?p2=commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/AbstractProxyFactoryTestCase.java&p1=commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy/AbstractProxyFactoryTestCase.java&r1=965003&r2=965011&rev=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy/AbstractProxyFactoryTestCase.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/AbstractProxyFactoryTestCase.java
 Sat Jul 17 04:40:19 2010
@@ -15,16 +15,16 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy;
+package org.apache.commons.proxy2;
 
-import org.apache.commons.proxy.provider.BeanProvider;
-import org.apache.commons.proxy.provider.ConstantProvider;
-import org.apache.commons.proxy.provider.SingletonProvider;
-import org.apache.commons.proxy.util.AbstractTestCase;
-import org.apache.commons.proxy.util.DuplicateEcho;
-import org.apache.commons.proxy.util.Echo;
-import org.apache.commons.proxy.util.EchoImpl;
-import org.apache.commons.proxy.util.SuffixInterceptor;
+import org.apache.commons.proxy2.provider.BeanProvider;
+import org.apache.commons.proxy2.provider.ConstantProvider;
+import org.apache.commons.proxy2.provider.SingletonProvider;
+import org.apache.commons.proxy2.util.AbstractTestCase;
+import org.apache.commons.proxy2.util.DuplicateEcho;
+import org.apache.commons.proxy2.util.Echo;
+import org.apache.commons.proxy2.util.EchoImpl;
+import org.apache.commons.proxy2.util.SuffixInterceptor;
 
 import java.io.IOException;
 import java.io.Serializable;

Copied: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/AbstractSubclassingProxyFactoryTestCase.java
 (from r965003, 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy/AbstractSubclassingProxyFactoryTestCase.java)
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/AbstractSubclassingProxyFactoryTestCase.java?p2=commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/AbstractSubclassingProxyFactoryTestCase.java&p1=commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy/AbstractSubclassingProxyFactoryTestCase.java&r1=965003&r2=965011&rev=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy/AbstractSubclassingProxyFactoryTestCase.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/AbstractSubclassingProxyFactoryTestCase.java
 Sat Jul 17 04:40:19 2010
@@ -15,14 +15,14 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy;
+package org.apache.commons.proxy2;
 
-import org.apache.commons.proxy.exception.ProxyFactoryException;
-import org.apache.commons.proxy.invoker.NullInvoker;
-import org.apache.commons.proxy.provider.ConstantProvider;
-import org.apache.commons.proxy.util.AbstractEcho;
-import org.apache.commons.proxy.util.Echo;
-import org.apache.commons.proxy.util.EchoImpl;
+import org.apache.commons.proxy2.exception.ProxyFactoryException;
+import org.apache.commons.proxy2.invoker.NullInvoker;
+import org.apache.commons.proxy2.provider.ConstantProvider;
+import org.apache.commons.proxy2.util.AbstractEcho;
+import org.apache.commons.proxy2.util.Echo;
+import org.apache.commons.proxy2.util.EchoImpl;
 
 import java.util.Date;
 

Copied: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/TestProxyUtils.java
 (from r965003, 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy/TestProxyUtils.java)
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/TestProxyUtils.java?p2=commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/TestProxyUtils.java&p1=commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy/TestProxyUtils.java&r1=965003&r2=965011&rev=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy/TestProxyUtils.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/TestProxyUtils.java
 Sat Jul 17 04:40:19 2010
@@ -15,12 +15,12 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy;
+package org.apache.commons.proxy2;
 
 import junit.framework.TestCase;
-import org.apache.commons.proxy.util.DuplicateEcho;
-import org.apache.commons.proxy.util.Echo;
-import org.apache.commons.proxy.util.EchoImpl;
+import org.apache.commons.proxy2.util.DuplicateEcho;
+import org.apache.commons.proxy2.util.Echo;
+import org.apache.commons.proxy2.util.EchoImpl;
 
 import java.io.Serializable;
 import java.util.Arrays;

Modified: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/exception/AbstractExceptionClassTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/exception/AbstractExceptionClassTestCase.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/exception/AbstractExceptionClassTestCase.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/exception/AbstractExceptionClassTestCase.java
 Sat Jul 17 04:40:19 2010
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.exception;
+package org.apache.commons.proxy2.exception;
 
 import junit.framework.TestCase;
 

Modified: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/exception/TestDelegateProviderException.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/exception/TestDelegateProviderException.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/exception/TestDelegateProviderException.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/exception/TestDelegateProviderException.java
 Sat Jul 17 04:40:19 2010
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.exception;
+package org.apache.commons.proxy2.exception;
 
 public class TestDelegateProviderException extends 
AbstractExceptionClassTestCase
 {

Modified: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/exception/TestInvocationHandlerException.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/exception/TestInvocationHandlerException.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/exception/TestInvocationHandlerException.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/exception/TestInvocationHandlerException.java
 Sat Jul 17 04:40:19 2010
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.exception;
+package org.apache.commons.proxy2.exception;
 
 public class TestInvocationHandlerException extends 
AbstractExceptionClassTestCase
 {

Modified: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/exception/TestProxyFactoryException.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/exception/TestProxyFactoryException.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/exception/TestProxyFactoryException.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/exception/TestProxyFactoryException.java
 Sat Jul 17 04:40:19 2010
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.exception;
+package org.apache.commons.proxy2.exception;
 
 /**
  * @author James Carman

Copied: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/impl/TestMethodSignature.java
 (from r965003, 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy/impl/TestMethodSignature.java)
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/impl/TestMethodSignature.java?p2=commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/impl/TestMethodSignature.java&p1=commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy/impl/TestMethodSignature.java&r1=965003&r2=965011&rev=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy/impl/TestMethodSignature.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/impl/TestMethodSignature.java
 Sat Jul 17 04:40:19 2010
@@ -15,11 +15,11 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.impl;
+package org.apache.commons.proxy2.impl;
 
 import junit.framework.TestCase;
-import org.apache.commons.proxy.util.DuplicateEcho;
-import org.apache.commons.proxy.util.Echo;
+import org.apache.commons.proxy2.util.DuplicateEcho;
+import org.apache.commons.proxy2.util.Echo;
 
 public class TestMethodSignature extends TestCase
 {

Modified: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/CountingProvider.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/CountingProvider.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/CountingProvider.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/CountingProvider.java
 Sat Jul 17 04:40:19 2010
@@ -15,9 +15,9 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.provider;
+package org.apache.commons.proxy2.provider;
 
-import org.apache.commons.proxy.ObjectProvider;
+import org.apache.commons.proxy2.ObjectProvider;
 
 /**
  * @author James Carman

Modified: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/TestBeanProvider.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/TestBeanProvider.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/TestBeanProvider.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/TestBeanProvider.java
 Sat Jul 17 04:40:19 2010
@@ -15,10 +15,10 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.provider;
+package org.apache.commons.proxy2.provider;
 
-import org.apache.commons.proxy.exception.ObjectProviderException;
-import org.apache.commons.proxy.util.AbstractTestCase;
+import org.apache.commons.proxy2.exception.ObjectProviderException;
+import org.apache.commons.proxy2.util.AbstractTestCase;
 
 public class TestBeanProvider extends AbstractTestCase
 {

Modified: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/TestCloningProvider.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/TestCloningProvider.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/TestCloningProvider.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/TestCloningProvider.java
 Sat Jul 17 04:40:19 2010
@@ -15,10 +15,10 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.provider;
+package org.apache.commons.proxy2.provider;
 
-import org.apache.commons.proxy.exception.ObjectProviderException;
-import org.apache.commons.proxy.util.AbstractTestCase;
+import org.apache.commons.proxy2.exception.ObjectProviderException;
+import org.apache.commons.proxy2.util.AbstractTestCase;
 
 import java.util.Date;
 

Modified: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/TestConstantProvider.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/TestConstantProvider.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/TestConstantProvider.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/TestConstantProvider.java
 Sat Jul 17 04:40:19 2010
@@ -15,9 +15,9 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.provider;
+package org.apache.commons.proxy2.provider;
 
-import org.apache.commons.proxy.util.AbstractTestCase;
+import org.apache.commons.proxy2.util.AbstractTestCase;
 
 /**
  * @since 1.0

Modified: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/TestNullProvider.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/TestNullProvider.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/TestNullProvider.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/TestNullProvider.java
 Sat Jul 17 04:40:19 2010
@@ -15,9 +15,9 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.provider;
+package org.apache.commons.proxy2.provider;
 
-import org.apache.commons.proxy.util.AbstractTestCase;
+import org.apache.commons.proxy2.util.AbstractTestCase;
 
 /**
  * @author James Carman

Modified: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/remoting/TestBurlapProvider.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/remoting/TestBurlapProvider.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/remoting/TestBurlapProvider.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/remoting/TestBurlapProvider.java
 Sat Jul 17 04:40:19 2010
@@ -15,11 +15,11 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.provider.remoting;
+package org.apache.commons.proxy2.provider.remoting;
 
-import org.apache.commons.proxy.exception.ObjectProviderException;
-import org.apache.commons.proxy.util.AbstractTestCase;
-import org.apache.commons.proxy.util.Echo;
+import org.apache.commons.proxy2.exception.ObjectProviderException;
+import org.apache.commons.proxy2.util.AbstractTestCase;
+import org.apache.commons.proxy2.util.Echo;
 
 public class TestBurlapProvider extends AbstractTestCase
 {

Modified: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/remoting/TestHessianProvider.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/remoting/TestHessianProvider.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/remoting/TestHessianProvider.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/provider/remoting/TestHessianProvider.java
 Sat Jul 17 04:40:19 2010
@@ -1,65 +1,65 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.commons.proxy.provider.remoting;
-
-import org.apache.commons.proxy.exception.ObjectProviderException;
-import org.apache.commons.proxy.util.AbstractTestCase;
-import org.apache.commons.proxy.util.Echo;
-
-public class TestHessianProvider extends AbstractTestCase
-{
-//**********************************************************************************************************************
-// Other Methods
-//**********************************************************************************************************************
-
-    public void testSerialization()
-    {
-        final HessianProvider p = new HessianProvider();
-        p.setServiceInterface(Echo.class);
-        p.setUrl("a malformed URL");
-        assertSerializable(p);
-    }
-
-    public void testWithMalformedUrl()
-    {
-        try
-        {
-            final HessianProvider p = new HessianProvider(Echo.class, "a 
malformed URL");
-            p.getObject();
-            fail();
-        }
-        catch( ObjectProviderException e )
-        {
-        }
-    }
-
-    public void testWithMalformedUrlBean()
-    {
-        try
-        {
-            final HessianProvider p = new HessianProvider();
-            p.setServiceInterface(Echo.class);
-            p.setUrl("a malformed URL");
-            p.getObject();
-            fail();
-        }
-        catch( ObjectProviderException e )
-        {
-        }
-    }
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.commons.proxy2.provider.remoting;
+
+import org.apache.commons.proxy2.exception.ObjectProviderException;
+import org.apache.commons.proxy2.util.AbstractTestCase;
+import org.apache.commons.proxy2.util.Echo;
+
+public class TestHessianProvider extends AbstractTestCase
+{
+//**********************************************************************************************************************
+// Other Methods
+//**********************************************************************************************************************
+
+    public void testSerialization()
+    {
+        final HessianProvider p = new HessianProvider();
+        p.setServiceInterface(Echo.class);
+        p.setUrl("a malformed URL");
+        assertSerializable(p);
+    }
+
+    public void testWithMalformedUrl()
+    {
+        try
+        {
+            final HessianProvider p = new HessianProvider(Echo.class, "a 
malformed URL");
+            p.getObject();
+            fail();
+        }
+        catch( ObjectProviderException e )
+        {
+        }
+    }
+
+    public void testWithMalformedUrlBean()
+    {
+        try
+        {
+            final HessianProvider p = new HessianProvider();
+            p.setServiceInterface(Echo.class);
+            p.setUrl("a malformed URL");
+            p.getObject();
+            fail();
+        }
+        catch( ObjectProviderException e )
+        {
+        }
+    }
 }
\ No newline at end of file

Modified: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/AbstractEcho.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/AbstractEcho.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/AbstractEcho.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/AbstractEcho.java
 Sat Jul 17 04:40:19 2010
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.util;
+package org.apache.commons.proxy2.util;
 
 import java.io.Serializable;
 

Modified: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/AbstractTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/AbstractTestCase.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/AbstractTestCase.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/AbstractTestCase.java
 Sat Jul 17 04:40:19 2010
@@ -1,4 +1,4 @@
-package org.apache.commons.proxy.util;
+package org.apache.commons.proxy2.util;
 
 import junit.framework.TestCase;
 import org.apache.commons.lang.SerializationUtils;

Modified: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/DuplicateEcho.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/DuplicateEcho.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/DuplicateEcho.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/DuplicateEcho.java
 Sat Jul 17 04:40:19 2010
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.util;
+package org.apache.commons.proxy2.util;
 
 /**
  * @author James Carman

Modified: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/Echo.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/Echo.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/Echo.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/Echo.java
 Sat Jul 17 04:40:19 2010
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.util;
+package org.apache.commons.proxy2.util;
 
 import java.io.IOException;
 

Modified: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/EchoImpl.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/EchoImpl.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/EchoImpl.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/EchoImpl.java
 Sat Jul 17 04:40:19 2010
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.util;
+package org.apache.commons.proxy2.util;
 
 import java.io.IOException;
 import java.io.Serializable;

Modified: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/QuoteService.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/QuoteService.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/QuoteService.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/QuoteService.java
 Sat Jul 17 04:40:19 2010
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.util;
+package org.apache.commons.proxy2.util;
 
 import java.rmi.Remote;
 import java.rmi.RemoteException;

Modified: 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/SuffixInterceptor.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/SuffixInterceptor.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/SuffixInterceptor.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/test/java/org/apache/commons/proxy2/util/SuffixInterceptor.java
 Sat Jul 17 04:40:19 2010
@@ -15,10 +15,10 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.util;
+package org.apache.commons.proxy2.util;
 
-import org.apache.commons.proxy.Interceptor;
-import org.apache.commons.proxy.Invocation;
+import org.apache.commons.proxy2.Interceptor;
+import org.apache.commons.proxy2.Invocation;
 
 /**
  * @author James Carman

Modified: 
commons/proper/proxy/branches/version-2.0-work/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistInvocation.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistInvocation.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistInvocation.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistInvocation.java
 Sat Jul 17 04:40:19 2010
@@ -15,14 +15,14 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.javassist;
+package org.apache.commons.proxy2.javassist;
 
 import javassist.CannotCompileException;
 import javassist.CtClass;
 import javassist.CtConstructor;
 import javassist.CtMethod;
-import org.apache.commons.proxy.Invocation;
-import org.apache.commons.proxy.ProxyUtils;
+import org.apache.commons.proxy2.Invocation;
+import org.apache.commons.proxy2.ProxyUtils;
 
 import java.lang.ref.WeakReference;
 import java.lang.reflect.Method;

Copied: 
commons/proper/proxy/branches/version-2.0-work/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistProxyFactory.java
 (from r965003, 
commons/proper/proxy/branches/version-2.0-work/javassist/src/main/java/org/apache/commons/proxy/javassist/JavassistProxyFactory.java)
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistProxyFactory.java?p2=commons/proper/proxy/branches/version-2.0-work/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistProxyFactory.java&p1=commons/proper/proxy/branches/version-2.0-work/javassist/src/main/java/org/apache/commons/proxy/javassist/JavassistProxyFactory.java&r1=965003&r2=965011&rev=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/javassist/src/main/java/org/apache/commons/proxy/javassist/JavassistProxyFactory.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistProxyFactory.java
 Sat Jul 17 04:40:19 2010
@@ -15,20 +15,20 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.javassist;
+package org.apache.commons.proxy2.javassist;
 
 import javassist.CannotCompileException;
 import javassist.CtClass;
 import javassist.CtConstructor;
 import javassist.CtMethod;
-import org.apache.commons.proxy.Interceptor;
-import org.apache.commons.proxy.Invoker;
-import org.apache.commons.proxy.ObjectProvider;
-import org.apache.commons.proxy.ProxyUtils;
-import org.apache.commons.proxy.exception.ProxyFactoryException;
-import org.apache.commons.proxy.impl.AbstractProxyClassGenerator;
-import org.apache.commons.proxy.impl.AbstractSubclassingProxyFactory;
-import org.apache.commons.proxy.impl.ProxyClassCache;
+import org.apache.commons.proxy2.Interceptor;
+import org.apache.commons.proxy2.Invoker;
+import org.apache.commons.proxy2.ObjectProvider;
+import org.apache.commons.proxy2.ProxyUtils;
+import org.apache.commons.proxy2.exception.ProxyFactoryException;
+import org.apache.commons.proxy2.impl.AbstractProxyClassGenerator;
+import org.apache.commons.proxy2.impl.AbstractSubclassingProxyFactory;
+import org.apache.commons.proxy2.impl.ProxyClassCache;
 
 import java.lang.reflect.Method;
 
@@ -76,7 +76,7 @@ public class JavassistProxyFactory exten
         }
         catch (Exception e)
         {
-            throw new ProxyFactoryException("Unable to instantiate proxy from 
generated proxy class.", e);
+            throw new ProxyFactoryException("Unable to instantiate proxy2 from 
generated proxy2 class.", e);
         }
     }
 
@@ -91,7 +91,7 @@ public class JavassistProxyFactory exten
         }
         catch (Exception e)
         {
-            throw new ProxyFactoryException("Unable to instantiate proxy class 
instance.", e);
+            throw new ProxyFactoryException("Unable to instantiate proxy2 
class instance.", e);
         }
     }
 
@@ -106,7 +106,7 @@ public class JavassistProxyFactory exten
         }
         catch (Exception e)
         {
-            throw new ProxyFactoryException("Unable to instantiate proxy from 
generated proxy class.", e);
+            throw new ProxyFactoryException("Unable to instantiate proxy2 from 
generated proxy2 class.", e);
         }
     }
 

Modified: 
commons/proper/proxy/branches/version-2.0-work/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistUtils.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistUtils.java?rev=965011&r1=965000&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistUtils.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistUtils.java
 Sat Jul 17 04:40:19 2010
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.javassist;
+package org.apache.commons.proxy2.javassist;
 
 import javassist.CannotCompileException;
 import javassist.ClassPool;
@@ -23,8 +23,8 @@ import javassist.CtClass;
 import javassist.CtField;
 import javassist.LoaderClassPath;
 import javassist.NotFoundException;
-import org.apache.commons.proxy.ProxyUtils;
-import org.apache.commons.proxy.exception.ObjectProviderException;
+import org.apache.commons.proxy2.ProxyUtils;
+import org.apache.commons.proxy2.exception.ObjectProviderException;
 
 import java.util.HashSet;
 import java.util.Set;

Modified: 
commons/proper/proxy/branches/version-2.0-work/javassist/src/main/resources/META-INF/services/org.apache.commons.proxy.ProxyFactory
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/javassist/src/main/resources/META-INF/services/org.apache.commons.proxy.ProxyFactory?rev=965011&r1=965010&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/javassist/src/main/resources/META-INF/services/org.apache.commons.proxy.ProxyFactory
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/javassist/src/main/resources/META-INF/services/org.apache.commons.proxy.ProxyFactory
 Sat Jul 17 04:40:19 2010
@@ -1 +1,17 @@
-org.apache.commons.proxy.javassist.JavassistProxyFactory
\ No newline at end of file
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+org.apache.commons.proxy2.javassist.JavassistProxyFactory
\ No newline at end of file

Copied: 
commons/proper/proxy/branches/version-2.0-work/javassist/src/test/java/org/apache/commons/proxy2/javassist/TestJavassistProxyFactory.java
 (from r965003, 
commons/proper/proxy/branches/version-2.0-work/javassist/src/test/java/org/apache/commons/proxy/javassist/TestJavassistProxyFactory.java)
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/javassist/src/test/java/org/apache/commons/proxy2/javassist/TestJavassistProxyFactory.java?p2=commons/proper/proxy/branches/version-2.0-work/javassist/src/test/java/org/apache/commons/proxy2/javassist/TestJavassistProxyFactory.java&p1=commons/proper/proxy/branches/version-2.0-work/javassist/src/test/java/org/apache/commons/proxy/javassist/TestJavassistProxyFactory.java&r1=965003&r2=965011&rev=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/javassist/src/test/java/org/apache/commons/proxy/javassist/TestJavassistProxyFactory.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/javassist/src/test/java/org/apache/commons/proxy2/javassist/TestJavassistProxyFactory.java
 Sat Jul 17 04:40:19 2010
@@ -1,7 +1,6 @@
-package org.apache.commons.proxy.javassist;
+package org.apache.commons.proxy2.javassist;
 
-import org.apache.commons.proxy.AbstractSubclassingProxyFactoryTestCase;
-import org.apache.commons.proxy.ProxyFactory;
+import org.apache.commons.proxy2.AbstractSubclassingProxyFactoryTestCase;
 
 public class TestJavassistProxyFactory extends 
AbstractSubclassingProxyFactoryTestCase
 {

Copied: 
commons/proper/proxy/branches/version-2.0-work/jdk/src/main/java/org/apache/commons/proxy2/jdk/JdkProxyFactory.java
 (from r965003, 
commons/proper/proxy/branches/version-2.0-work/jdk/src/main/java/org/apache/commons/proxy/jdk/JdkProxyFactory.java)
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/jdk/src/main/java/org/apache/commons/proxy2/jdk/JdkProxyFactory.java?p2=commons/proper/proxy/branches/version-2.0-work/jdk/src/main/java/org/apache/commons/proxy2/jdk/JdkProxyFactory.java&p1=commons/proper/proxy/branches/version-2.0-work/jdk/src/main/java/org/apache/commons/proxy/jdk/JdkProxyFactory.java&r1=965003&r2=965011&rev=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/jdk/src/main/java/org/apache/commons/proxy/jdk/JdkProxyFactory.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/jdk/src/main/java/org/apache/commons/proxy2/jdk/JdkProxyFactory.java
 Sat Jul 17 04:40:19 2010
@@ -15,14 +15,14 @@
  * limitations under the License.
  */
 
-package org.apache.commons.proxy.jdk;
+package org.apache.commons.proxy2.jdk;
 
-import org.apache.commons.proxy.Interceptor;
-import org.apache.commons.proxy.Invocation;
-import org.apache.commons.proxy.Invoker;
-import org.apache.commons.proxy.ObjectProvider;
-import org.apache.commons.proxy.ProxyUtils;
-import org.apache.commons.proxy.impl.AbstractProxyFactory;
+import org.apache.commons.proxy2.Interceptor;
+import org.apache.commons.proxy2.Invocation;
+import org.apache.commons.proxy2.Invoker;
+import org.apache.commons.proxy2.ObjectProvider;
+import org.apache.commons.proxy2.ProxyUtils;
+import org.apache.commons.proxy2.impl.AbstractProxyFactory;
 
 import java.io.Serializable;
 import java.lang.reflect.InvocationHandler;
@@ -38,12 +38,12 @@ public class JdkProxyFactory extends Abs
 
 
     /**
-     * Creates a proxy which delegates to the object provided by 
<code>delegateProvider</code>.
+     * Creates a proxy2 which delegates to the object provided by 
<code>delegateProvider</code>.
      *
-     * @param classLoader      the class loader to use when generating the 
proxy
+     * @param classLoader      the class loader to use when generating the 
proxy2
      * @param delegateProvider the delegate provider
-     * @param proxyClasses     the interfaces that the proxy should implement
-     * @return a proxy which delegates to the object provided by the target 
<code>delegateProvider>
+     * @param proxyClasses     the interfaces that the proxy2 should implement
+     * @return a proxy2 which delegates to the object provided by the target 
<code>delegateProvider>
      */
     public Object createDelegatorProxy( ClassLoader classLoader, 
ObjectProvider delegateProvider,
                                         Class... proxyClasses )
@@ -53,14 +53,14 @@ public class JdkProxyFactory extends Abs
     }
 
     /**
-     * Creates a proxy which passes through a {...@link Interceptor 
interceptor} before eventually reaching the
+     * Creates a proxy2 which passes through a {...@link Interceptor 
interceptor} before eventually reaching the
      * <code>target</code> object.
      *
-     * @param classLoader  the class loader to use when generating the proxy
+     * @param classLoader  the class loader to use when generating the proxy2
      * @param target       the target object
      * @param interceptor  the method interceptor
-     * @param proxyClasses the interfaces that the proxy should implement.
-     * @return a proxy which passes through a {...@link Interceptor 
interceptor} before eventually reaching the
+     * @param proxyClasses the interfaces that the proxy2 should implement.
+     * @return a proxy2 which passes through a {...@link Interceptor 
interceptor} before eventually reaching the
      *         <code>target</code> object.
      */
     public Object createInterceptorProxy( ClassLoader classLoader, Object 
target, Interceptor interceptor,
@@ -71,12 +71,12 @@ public class JdkProxyFactory extends Abs
     }
 
     /**
-     * Creates a proxy which uses the provided {...@link Invoker} to handle 
all method invocations.
+     * Creates a proxy2 which uses the provided {...@link Invoker} to handle 
all method invocations.
      *
-     * @param classLoader  the class loader to use when generating the proxy
+     * @param classLoader  the class loader to use when generating the proxy2
      * @param invoker      the invoker
-     * @param proxyClasses the interfaces that the proxy should implement
-     * @return a proxy which uses the provided {...@link Invoker} to handle 
all method invocations
+     * @param proxyClasses the interfaces that the proxy2 should implement
+     * @return a proxy2 which uses the provided {...@link Invoker} to handle 
all method invocations
      */
     public Object createInvokerProxy( ClassLoader classLoader, Invoker invoker,
                                       Class... proxyClasses )

Modified: 
commons/proper/proxy/branches/version-2.0-work/jdk/src/main/resources/META-INF/services/org.apache.commons.proxy.ProxyFactory
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/jdk/src/main/resources/META-INF/services/org.apache.commons.proxy.ProxyFactory?rev=965011&r1=965010&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/jdk/src/main/resources/META-INF/services/org.apache.commons.proxy.ProxyFactory
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/jdk/src/main/resources/META-INF/services/org.apache.commons.proxy.ProxyFactory
 Sat Jul 17 04:40:19 2010
@@ -1 +1,17 @@
-org.apache.commons.proxy.jdk.JdkProxyFactory
\ No newline at end of file
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+org.apache.commons.proxy2.jdk.JdkProxyFactory
\ No newline at end of file

Copied: 
commons/proper/proxy/branches/version-2.0-work/jdk/src/test/java/org/apache/commons/proxy2/jdk/TestJdkProxyFactory.java
 (from r965003, 
commons/proper/proxy/branches/version-2.0-work/jdk/src/test/java/org/apache/commons/proxy/jdk/TestJdkProxyFactory.java)
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/jdk/src/test/java/org/apache/commons/proxy2/jdk/TestJdkProxyFactory.java?p2=commons/proper/proxy/branches/version-2.0-work/jdk/src/test/java/org/apache/commons/proxy2/jdk/TestJdkProxyFactory.java&p1=commons/proper/proxy/branches/version-2.0-work/jdk/src/test/java/org/apache/commons/proxy/jdk/TestJdkProxyFactory.java&r1=965003&r2=965011&rev=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/jdk/src/test/java/org/apache/commons/proxy/jdk/TestJdkProxyFactory.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/jdk/src/test/java/org/apache/commons/proxy2/jdk/TestJdkProxyFactory.java
 Sat Jul 17 04:40:19 2010
@@ -1,7 +1,6 @@
-package org.apache.commons.proxy.jdk;
+package org.apache.commons.proxy2.jdk;
 
-import org.apache.commons.proxy.AbstractProxyFactoryTestCase;
-import org.apache.commons.proxy.AbstractSubclassingProxyFactoryTestCase;
+import org.apache.commons.proxy2.AbstractProxyFactoryTestCase;
 
 public class TestJdkProxyFactory extends AbstractProxyFactoryTestCase
 {

Modified: commons/proper/proxy/branches/version-2.0-work/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/pom.xml?rev=965011&r1=965010&r2=965011&view=diff
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/pom.xml (original)
+++ commons/proper/proxy/branches/version-2.0-work/pom.xml Sat Jul 17 04:40:19 
2010
@@ -1,4 +1,5 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
+
 <!--
   ~ Licensed to the Apache Software Foundation (ASF) under one or more
   ~ contributor license agreements.  See the NOTICE file distributed with

Modified: commons/proper/proxy/branches/version-2.0-work/src/assembly/bin.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/src/assembly/bin.xml?rev=965011&r1=965010&r2=965011&view=diff
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/src/assembly/bin.xml 
(original)
+++ commons/proper/proxy/branches/version-2.0-work/src/assembly/bin.xml Sat Jul 
17 04:40:19 2010
@@ -14,6 +14,7 @@
   ~ See the License for the specific language governing permissions and
   ~ limitations under the License.
   -->
+
 <assembly>
     <id>bin</id>
     <formats>

Modified: commons/proper/proxy/branches/version-2.0-work/src/assembly/src.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/src/assembly/src.xml?rev=965011&r1=965010&r2=965011&view=diff
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/src/assembly/src.xml 
(original)
+++ commons/proper/proxy/branches/version-2.0-work/src/assembly/src.xml Sat Jul 
17 04:40:19 2010
@@ -14,6 +14,7 @@
   ~ See the License for the specific language governing permissions and
   ~ limitations under the License.
   -->
+
 <assembly>
     <id>src</id>
     <formats>

Modified: commons/proper/proxy/branches/version-2.0-work/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/src/site/site.xml?rev=965011&r1=965010&r2=965011&view=diff
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/src/site/site.xml (original)
+++ commons/proper/proxy/branches/version-2.0-work/src/site/site.xml Sat Jul 17 
04:40:19 2010
@@ -16,6 +16,7 @@
   ~ See the License for the specific language governing permissions and
   ~ limitations under the License.
   -->
+
 <project name="Commons Proxy">
   <bannerRight>
     <name>Commons Proxy</name>

Modified: 
commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/download_proxy.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/download_proxy.xml?rev=965011&r1=965010&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/download_proxy.xml 
(original)
+++ 
commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/download_proxy.xml 
Sat Jul 17 04:40:19 2010
@@ -15,6 +15,7 @@
   ~ See the License for the specific language governing permissions and
   ~ limitations under the License.
   -->
+
 <!--
  +======================================================================+
  |****                                                              ****|

Modified: commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/index.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/index.xml?rev=965011&r1=965010&r2=965011&view=diff
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/index.xml 
(original)
+++ commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/index.xml Sat 
Jul 17 04:40:19 2010
@@ -16,6 +16,7 @@
   ~ See the License for the specific language governing permissions and
   ~ limitations under the License.
   -->
+
 <document>
     <properties>
         <title>Overview</title>

Modified: 
commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/issue-tracking.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/issue-tracking.xml?rev=965011&r1=965010&r2=965011&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/issue-tracking.xml 
(original)
+++ 
commons/proper/proxy/branches/version-2.0-work/src/site/xdoc/issue-tracking.xml 
Sat Jul 17 04:40:19 2010
@@ -15,6 +15,7 @@
   ~ See the License for the specific language governing permissions and
   ~ limitations under the License.
   -->
+
 <!--
  +======================================================================+
  |****                                                              ****|


Reply via email to