You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by jc...@apache.org on 2007/09/28 16:36:26 UTC

svn commit: r580372 [2/2] - in /commons/sandbox/proxy/trunk: ./ .settings/ src/main/java/org/apache/commons/proxy/ src/main/java/org/apache/commons/proxy/exception/ src/main/java/org/apache/commons/proxy/factory/cglib/ src/main/java/org/apache/commons/...

Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/SessionBeanProvider.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/SessionBeanProvider.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/SessionBeanProvider.java (original)
+++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/SessionBeanProvider.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.provider;
 
 import org.apache.commons.proxy.ObjectProvider;
@@ -40,7 +41,6 @@
 // Fields
 //----------------------------------------------------------------------------------------------------------------------
     private final String jndiName;
-    private final Class serviceInterface;
     private final Class homeInterface;
     private final Properties properties;
 
@@ -48,18 +48,16 @@
 // Constructors
 //----------------------------------------------------------------------------------------------------------------------
 
-    public SessionBeanProvider( String jndiName, Class serviceInterface, Class homeInterface )
+    public SessionBeanProvider( String jndiName, Class homeInterface )
     {
         this.jndiName = jndiName;
-        this.serviceInterface = serviceInterface;
         this.homeInterface = homeInterface;
         this.properties = null;
     }
 
-    public SessionBeanProvider( String jndiName, Class serviceInterface, Class homeInterface, Properties properties )
+    public SessionBeanProvider( String jndiName, Class homeInterface, Properties properties )
     {
         this.jndiName = jndiName;
-        this.serviceInterface = serviceInterface;
         this.homeInterface = homeInterface;
         this.properties = properties;
     }

Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/SingletonProvider.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/SingletonProvider.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/SingletonProvider.java (original)
+++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/SingletonProvider.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.provider;
 
 import org.apache.commons.proxy.ObjectProvider;

Added: commons/sandbox/proxy/trunk/src/site/resources/images/logo.png
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/site/resources/images/logo.png?rev=580372&view=auto
==============================================================================
Binary file - no diff available.

Propchange: commons/sandbox/proxy/trunk/src/site/resources/images/logo.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: commons/sandbox/proxy/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/site/site.xml?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/site/site.xml (original)
+++ commons/sandbox/proxy/trunk/src/site/site.xml Fri Sep 28 07:36:20 2007
@@ -1,4 +1,20 @@
 <?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
+  ~ 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.
+  -->
 <project name="Commons Proxy">
   <bannerRight>
     <name>Commons Proxy</name>

Copied: commons/sandbox/proxy/trunk/src/site/xdoc/index.xml (from r580295, commons/sandbox/proxy/trunk/xdocs/index.xml)
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/site/xdoc/index.xml?p2=commons/sandbox/proxy/trunk/src/site/xdoc/index.xml&p1=commons/sandbox/proxy/trunk/xdocs/index.xml&r1=580295&r2=580372&rev=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/xdocs/index.xml (original)
+++ commons/sandbox/proxy/trunk/src/site/xdoc/index.xml Fri Sep 28 07:36:20 2007
@@ -1,19 +1,20 @@
 <?xml version="1.0"?>
 <!--
-   Copyright 2005 The Apache Software Foundation
-
-   Licensed 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.
--->
+  ~ 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.
+  -->
 <document>
     <properties>
         <title>Overview</title>

Propchange: commons/sandbox/proxy/trunk/src/site/xdoc/index.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/sandbox/proxy/trunk/src/site/xdoc/index.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/TestProxyFactory.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/TestProxyFactory.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/TestProxyFactory.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/TestProxyFactory.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy;
 import org.apache.commons.proxy.factory.AbstractProxyFactoryTestCase;
 

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/TestProxyUtils.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/TestProxyUtils.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/TestProxyUtils.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/TestProxyUtils.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy;
 
 import junit.framework.TestCase;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/AbstractExceptionClassTestCase.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/AbstractExceptionClassTestCase.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/AbstractExceptionClassTestCase.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/AbstractExceptionClassTestCase.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.exception;
 
 import junit.framework.TestCase;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/TestDelegateProviderException.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/TestDelegateProviderException.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/TestDelegateProviderException.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/TestDelegateProviderException.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.exception;
 
 public class TestDelegateProviderException extends AbstractExceptionClassTestCase

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/TestInvocationHandlerException.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/TestInvocationHandlerException.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/TestInvocationHandlerException.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/TestInvocationHandlerException.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.exception;
 public class TestInvocationHandlerException extends AbstractExceptionClassTestCase
 {

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/TestProxyFactoryException.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/TestProxyFactoryException.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/TestProxyFactoryException.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/TestProxyFactoryException.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.exception;
 
 /**

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/AbstractProxyFactoryTestCase.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/AbstractProxyFactoryTestCase.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/AbstractProxyFactoryTestCase.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/AbstractProxyFactoryTestCase.java Fri Sep 28 07:36:20 2007
@@ -1,18 +1,20 @@
 /*
- *  Copyright 2005 The Apache Software Foundation
- *
- *  Licensed 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
+ * 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.
+ * 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.factory;
 
 import org.apache.commons.proxy.Invocation;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/AbstractSubclassingProxyFactoryTestCase.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/AbstractSubclassingProxyFactoryTestCase.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/AbstractSubclassingProxyFactoryTestCase.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/AbstractSubclassingProxyFactoryTestCase.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.factory;
 
 import org.apache.commons.proxy.ProxyFactory;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/cglib/TestCglibProxyFactory.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/cglib/TestCglibProxyFactory.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/cglib/TestCglibProxyFactory.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/cglib/TestCglibProxyFactory.java Fri Sep 28 07:36:20 2007
@@ -1,18 +1,20 @@
 /*
- *  Copyright 2005 The Apache Software Foundation
- *
- *  Licensed 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
+ * 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.
+ * 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.factory.cglib;
 
 import org.apache.commons.proxy.factory.AbstractProxyFactoryTestCase;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/javassist/TestJavassistProxyFactory.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/javassist/TestJavassistProxyFactory.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/javassist/TestJavassistProxyFactory.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/javassist/TestJavassistProxyFactory.java Fri Sep 28 07:36:20 2007
@@ -1,18 +1,20 @@
 /*
- *  Copyright 2005 The Apache Software Foundation
- *
- *  Licensed 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
+ * 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.
+ * 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.factory.javassist;
 
 import org.apache.commons.proxy.factory.AbstractProxyFactoryTestCase;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/util/TestMethodSignature.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/util/TestMethodSignature.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/util/TestMethodSignature.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/util/TestMethodSignature.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.factory.util;
 import junit.framework.TestCase;
 import org.apache.commons.proxy.util.DuplicateEcho;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestExecutorInterceptor.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestExecutorInterceptor.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestExecutorInterceptor.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestExecutorInterceptor.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.interceptor;
 
 import junit.framework.TestCase;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestFilteredInterceptor.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestFilteredInterceptor.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestFilteredInterceptor.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestFilteredInterceptor.java Fri Sep 28 07:36:20 2007
@@ -1,18 +1,20 @@
 /*
- *  Copyright 2005 The Apache Software Foundation
- *
- *  Licensed 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
+ * 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.
+ * 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.interceptor;
 
 import org.apache.commons.proxy.util.Echo;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestInterceptorChain.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestInterceptorChain.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestInterceptorChain.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestInterceptorChain.java Fri Sep 28 07:36:20 2007
@@ -1,18 +1,20 @@
 /*
- *  Copyright 2005 The Apache Software Foundation
- *
- *  Licensed 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
+ * 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.
+ * 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.interceptor;
 
 import junit.framework.TestCase;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestLoggingInterceptor.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestLoggingInterceptor.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestLoggingInterceptor.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestLoggingInterceptor.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.interceptor;
 
 import org.apache.commons.logging.Log;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestMethodInterceptorAdapter.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestMethodInterceptorAdapter.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestMethodInterceptorAdapter.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestMethodInterceptorAdapter.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.interceptor;
 
 import junit.framework.TestCase;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/filter/TestPatternFilter.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/filter/TestPatternFilter.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/filter/TestPatternFilter.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/filter/TestPatternFilter.java Fri Sep 28 07:36:20 2007
@@ -1,18 +1,20 @@
 /*
- *  Copyright 2005 The Apache Software Foundation
- *
- *  Licensed 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
+ * 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.
+ * 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.interceptor.filter;
 
 import junit.framework.TestCase;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/filter/TestReturnTypeFilter.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/filter/TestReturnTypeFilter.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/filter/TestReturnTypeFilter.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/filter/TestReturnTypeFilter.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.interceptor.filter;
 import junit.framework.TestCase;
 

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/filter/TestSimpleFilter.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/filter/TestSimpleFilter.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/filter/TestSimpleFilter.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/filter/TestSimpleFilter.java Fri Sep 28 07:36:20 2007
@@ -1,18 +1,20 @@
 /*
- *  Copyright 2005 The Apache Software Foundation
- *
- *  Licensed 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
+ * 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.
+ * 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.interceptor.filter;
 
 import junit.framework.TestCase;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/invoker/TestInvocationHandlerAdapter.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/invoker/TestInvocationHandlerAdapter.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/invoker/TestInvocationHandlerAdapter.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/invoker/TestInvocationHandlerAdapter.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.invoker;
 import junit.framework.TestCase;
 import org.apache.commons.proxy.factory.javassist.JavassistProxyFactory;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/invoker/TestNullInvoker.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/invoker/TestNullInvoker.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/invoker/TestNullInvoker.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/invoker/TestNullInvoker.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.invoker;
 import junit.framework.TestCase;
 import org.apache.commons.proxy.ProxyUtils;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/invoker/TestXmlRpcInvoker.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/invoker/TestXmlRpcInvoker.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/invoker/TestXmlRpcInvoker.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/invoker/TestXmlRpcInvoker.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id:TestXmlRpcInvoker.java 325897 2005-10-17 10:11:52 -0400 (Mon, 17 Oct 2005) jcarman $
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.invoker;
 
 import junit.extensions.TestSetup;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/CountingProvider.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/CountingProvider.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/CountingProvider.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/CountingProvider.java Fri Sep 28 07:36:20 2007
@@ -1,18 +1,20 @@
 /*
- *  Copyright 2005 The Apache Software Foundation
- *
- *  Licensed 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
+ * 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.
+ * 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;
 
 import org.apache.commons.proxy.ObjectProvider;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestBeanProvider.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestBeanProvider.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestBeanProvider.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestBeanProvider.java Fri Sep 28 07:36:20 2007
@@ -1,18 +1,20 @@
 /*
- *  Copyright 2005 The Apache Software Foundation
- *
- *  Licensed 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
+ * 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.
+ * 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;
 
 import junit.framework.TestCase;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestBurlapProvider.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestBurlapProvider.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestBurlapProvider.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestBurlapProvider.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.provider;
 import junit.framework.TestCase;
 import org.apache.commons.proxy.util.Echo;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestCloningProvider.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestCloningProvider.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestCloningProvider.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestCloningProvider.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.provider;
 
 import junit.framework.TestCase;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestConstantProvider.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestConstantProvider.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestConstantProvider.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestConstantProvider.java Fri Sep 28 07:36:20 2007
@@ -1,18 +1,20 @@
 /*
- *  Copyright 2005 The Apache Software Foundation
- *
- *  Licensed 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
+ * 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.
+ * 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;
 
 import org.apache.commons.proxy.util.AbstractTestCase;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestHessianProvider.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestHessianProvider.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestHessianProvider.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestHessianProvider.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.provider;
 
 import junit.framework.TestCase;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestNullProvider.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestNullProvider.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestNullProvider.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestNullProvider.java Fri Sep 28 07:36:20 2007
@@ -1,18 +1,20 @@
 /*
- *  Copyright 2005 The Apache Software Foundation
- *
- *  Licensed 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
+ * 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.
+ * 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;
 
 import junit.framework.TestCase;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestRmiProvider.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestRmiProvider.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestRmiProvider.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestRmiProvider.java Fri Sep 28 07:36:20 2007
@@ -1,18 +1,20 @@
 /*
- *  Copyright 2005 The Apache Software Foundation
- *
- *  Licensed 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
+ * 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.
+ * 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;
 
 import junit.framework.TestCase;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/AbstractEcho.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/AbstractEcho.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/AbstractEcho.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/AbstractEcho.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.util;
 
 import java.io.Serializable;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/AbstractTestCase.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/AbstractTestCase.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/AbstractTestCase.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/AbstractTestCase.java Fri Sep 28 07:36:20 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright (c) 2005 Carman Consulting, Inc. All Rights Reserved.
- *
- * Licensed 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
+ * 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
  *
@@ -13,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.util;
 
 import junit.framework.TestCase;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/DuplicateEcho.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/DuplicateEcho.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/DuplicateEcho.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/DuplicateEcho.java Fri Sep 28 07:36:20 2007
@@ -1,10 +1,10 @@
-/* $Id$
- *
- * Copyright 2005 The Apache Software Foundation.
- *
- * Licensed 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
+/*
+ * 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
  *
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.util;
 
 /**

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/Echo.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/Echo.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/Echo.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/Echo.java Fri Sep 28 07:36:20 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright (c) 2005 Carman Consulting, Inc. All Rights Reserved.
- *
- * Licensed 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
+ * 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
  *
@@ -13,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.util;
 
 import java.io.IOException;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/EchoImpl.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/EchoImpl.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/EchoImpl.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/EchoImpl.java Fri Sep 28 07:36:20 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright (c) 2005 Carman Consulting, Inc. All Rights Reserved.
- *
- * Licensed 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
+ * 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
  *
@@ -13,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.util;
 
 import java.io.IOException;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/QuoteService.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/QuoteService.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/QuoteService.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/QuoteService.java Fri Sep 28 07:36:20 2007
@@ -1,18 +1,20 @@
 /*
- *  Copyright 2005 The Apache Software Foundation
- *
- *  Licensed 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
+ * 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.
+ * 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.util;
 
 import java.rmi.Remote;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/SuffixInterceptor.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/SuffixInterceptor.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/SuffixInterceptor.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/SuffixInterceptor.java Fri Sep 28 07:36:20 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright (c) 2005 Carman Consulting, Inc. All Rights Reserved.
- *
- * Licensed 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
+ * 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
  *
@@ -13,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.proxy.util;
 
 import org.apache.commons.proxy.Invocation;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/rmi/RmiEcho.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/rmi/RmiEcho.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/rmi/RmiEcho.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/rmi/RmiEcho.java Fri Sep 28 07:36:20 2007
@@ -1,18 +1,20 @@
 /*
- *  Copyright 2005 The Apache Software Foundation
- *
- *  Licensed 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
+ * 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.
+ * 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.util.rmi;
 
 import java.rmi.Remote;

Modified: commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/rmi/RmiEchoImpl.java
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/rmi/RmiEchoImpl.java?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/rmi/RmiEchoImpl.java (original)
+++ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/rmi/RmiEchoImpl.java Fri Sep 28 07:36:20 2007
@@ -1,18 +1,20 @@
 /*
- *  Copyright 2005 The Apache Software Foundation
- *
- *  Licensed 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
+ * 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.
+ * 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.util.rmi;
 
 import java.rmi.server.UnicastRemoteObject;

Modified: commons/sandbox/proxy/trunk/src/test/resources/log4j.properties
URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/test/resources/log4j.properties?rev=580372&r1=580371&r2=580372&view=diff
==============================================================================
--- commons/sandbox/proxy/trunk/src/test/resources/log4j.properties (original)
+++ commons/sandbox/proxy/trunk/src/test/resources/log4j.properties Fri Sep 28 07:36:20 2007
@@ -1,3 +1,37 @@
+#
+# 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.
+#
+
+#
+# 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.
+#
+
 # Copyright 2005 The Apache Software Foundation.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");