Return-Path: Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: (qmail 91517 invoked from network); 29 Sep 2007 16:55:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Sep 2007 16:55:41 -0000 Received: (qmail 50451 invoked by uid 500); 29 Sep 2007 16:55:28 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 50385 invoked by uid 500); 29 Sep 2007 16:55:28 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Delivered-To: moderator for commits@commons.apache.org Received: (qmail 20468 invoked by uid 99); 28 Sep 2007 14:37:02 -0000 X-ASF-Spam-Status: No, hits=-98.8 required=10.0 tests=ALL_TRUSTED,DNS_FROM_DOB,RCVD_IN_DOB X-Spam-Check-By: apache.org Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r580372 [1/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/... Date: Fri, 28 Sep 2007 14:36:26 -0000 To: commits@commons.apache.org From: jcarman@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20070928143641.DFADB1A983E@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jcarman Date: Fri Sep 28 07:36:20 2007 New Revision: 580372 URL: http://svn.apache.org/viewvc?rev=580372&view=rev Log: Maven 2 Build Setup and general cleanup before moving to proper. Added: commons/sandbox/proxy/trunk/src/site/resources/ commons/sandbox/proxy/trunk/src/site/resources/images/ commons/sandbox/proxy/trunk/src/site/resources/images/logo.png (with props) commons/sandbox/proxy/trunk/src/site/xdoc/ commons/sandbox/proxy/trunk/src/site/xdoc/index.xml (contents, props changed) - copied, changed from r580295, commons/sandbox/proxy/trunk/xdocs/index.xml Removed: commons/sandbox/proxy/trunk/.settings/ commons/sandbox/proxy/trunk/build.xml commons/sandbox/proxy/trunk/maven.xml commons/sandbox/proxy/trunk/project.properties commons/sandbox/proxy/trunk/project.xml commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/cache/ commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestCachedProvider.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestPooledProvider.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/cache/ commons/sandbox/proxy/trunk/xdocs/ Modified: commons/sandbox/proxy/trunk/NOTICE.txt commons/sandbox/proxy/trunk/PROPOSAL.html commons/sandbox/proxy/trunk/STATUS.html commons/sandbox/proxy/trunk/checkstyle.xml commons/sandbox/proxy/trunk/license-header.txt commons/sandbox/proxy/trunk/pom.xml commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/Interceptor.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/Invocation.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/Invoker.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/ObjectProvider.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/ProxyFactory.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/ProxyUtils.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/exception/InvokerException.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/exception/ObjectProviderException.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/exception/ProxyFactoryException.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/cglib/CglibProxyFactory.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistInvocation.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistProxyFactory.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistUtils.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/AbstractProxyClassGenerator.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/AbstractSubclassingProxyFactory.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/MethodSignature.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/ProxyClassCache.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/ProxyClassGenerator.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/ExecutorInterceptor.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/FilteredInterceptor.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/InterceptorChain.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/LoggingInterceptor.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/MethodFilter.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/MethodInterceptorAdapter.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/filter/PatternFilter.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/filter/ReturnTypeFilter.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/filter/SimpleFilter.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/invoker/InvocationHandlerAdapter.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/invoker/NullInvoker.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/invoker/XmlRpcInvoker.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/BeanProvider.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/BurlapProvider.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/CloningProvider.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/ConstantProvider.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/HessianProvider.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/JaxRpcProvider.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/NullProvider.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/ProviderDecorator.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/ProviderUtils.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/RmiProvider.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/SessionBeanProvider.java commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/SingletonProvider.java commons/sandbox/proxy/trunk/src/site/site.xml commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/TestProxyFactory.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/TestProxyUtils.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/AbstractExceptionClassTestCase.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/TestDelegateProviderException.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/TestInvocationHandlerException.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/exception/TestProxyFactoryException.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/AbstractProxyFactoryTestCase.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/AbstractSubclassingProxyFactoryTestCase.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/cglib/TestCglibProxyFactory.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/javassist/TestJavassistProxyFactory.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/factory/util/TestMethodSignature.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestExecutorInterceptor.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestFilteredInterceptor.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestInterceptorChain.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestLoggingInterceptor.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/TestMethodInterceptorAdapter.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/filter/TestPatternFilter.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/filter/TestReturnTypeFilter.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/interceptor/filter/TestSimpleFilter.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/invoker/TestInvocationHandlerAdapter.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/invoker/TestNullInvoker.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/invoker/TestXmlRpcInvoker.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/CountingProvider.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestBeanProvider.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestBurlapProvider.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestCloningProvider.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestConstantProvider.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestHessianProvider.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestNullProvider.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/provider/TestRmiProvider.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/AbstractEcho.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/AbstractTestCase.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/DuplicateEcho.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/Echo.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/EchoImpl.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/QuoteService.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/SuffixInterceptor.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/rmi/RmiEcho.java commons/sandbox/proxy/trunk/src/test/java/org/apache/commons/proxy/util/rmi/RmiEchoImpl.java commons/sandbox/proxy/trunk/src/test/resources/log4j.properties Modified: commons/sandbox/proxy/trunk/NOTICE.txt URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/NOTICE.txt?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/NOTICE.txt (original) +++ commons/sandbox/proxy/trunk/NOTICE.txt Fri Sep 28 07:36:20 2007 @@ -1,2 +1,5 @@ +Apache Commons Proxy +Copyright 2006-2007 The Apache Software Foundation + This product includes software developed by -The Apache Software Foundation (http://www.apache.org/). +The Apache Software Foundation (http://www.apache.org/). \ No newline at end of file Modified: commons/sandbox/proxy/trunk/PROPOSAL.html URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/PROPOSAL.html?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/PROPOSAL.html (original) +++ commons/sandbox/proxy/trunk/PROPOSAL.html Fri Sep 28 07:36:20 2007 @@ -1,17 +1,18 @@ Modified: commons/sandbox/proxy/trunk/STATUS.html URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/STATUS.html?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/STATUS.html (original) +++ commons/sandbox/proxy/trunk/STATUS.html Fri Sep 28 07:36:20 2007 @@ -1,17 +1,18 @@ Modified: commons/sandbox/proxy/trunk/checkstyle.xml URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/checkstyle.xml?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/checkstyle.xml (original) +++ commons/sandbox/proxy/trunk/checkstyle.xml Fri Sep 28 07:36:20 2007 @@ -1,25 +1,27 @@ - + ~ 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. + --> - + Modified: commons/sandbox/proxy/trunk/license-header.txt URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/license-header.txt?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/license-header.txt (original) +++ commons/sandbox/proxy/trunk/license-header.txt Fri Sep 28 07:36:20 2007 @@ -1,18 +1,16 @@ /* - * 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 + * 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 + * 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. */ Modified: commons/sandbox/proxy/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/pom.xml?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/pom.xml (original) +++ commons/sandbox/proxy/trunk/pom.xml Fri Sep 28 07:36:20 2007 @@ -1,25 +1,28 @@ + ~ 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. + --> 4.0.0 - org.apache.commons - commons-sandbox-parent - 3-SNAPSHOT + org.apache.commons + commons-sandbox-parent + 3-SNAPSHOT commons-proxy 1.0-SNAPSHOT @@ -86,14 +89,12 @@ - scm:svn:http://svn.apache.org/repos/asf/commons/sandbox/proxy/trunk/ - scm:svn:https://svn.apache.org/repos/asf/commons/sandbox/proxy/trunk/ - http://svn.apache.org/repos/asf/commons/sandbox/proxy/trunk/ + scm:svn:http://svn.apache.org/repos/asf/commons/sandbox/proxy/trunk/ + scm:svn:https://svn.apache.org/repos/asf/commons/sandbox/proxy/trunk/ + http://svn.apache.org/repos/asf/commons/sandbox/proxy/trunk/ - src/java - src/test org.apache.maven.plugins @@ -133,14 +134,6 @@ - - - src/java - - **/*.java - - - @@ -230,27 +223,27 @@ - - - org.apache.maven.plugins - maven-changelog-plugin - - - org.apache.maven.plugins - maven-checkstyle-plugin - - checkstyle.xml - - - + + + org.apache.maven.plugins + maven-changelog-plugin + + + org.apache.maven.plugins + maven-checkstyle-plugin + + checkstyle.xml + + + - - website - Apache Website - scp://people.apache.org/www/commons.apache.org/sandbox/proxy/ - + + website + Apache Website + scp://people.apache.org/www/commons.apache.org/sandbox/proxy/ + Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/Interceptor.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/Interceptor.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/Interceptor.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/Interceptor.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; /** Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/Invocation.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/Invocation.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/Invocation.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/Invocation.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 java.lang.reflect.Method; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/Invoker.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/Invoker.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/Invoker.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/Invoker.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 java.lang.reflect.Method; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/ObjectProvider.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/ObjectProvider.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/ObjectProvider.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/ObjectProvider.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; /** Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/ProxyFactory.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/ProxyFactory.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/ProxyFactory.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/ProxyFactory.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 java.lang.reflect.InvocationHandler; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/ProxyUtils.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/ProxyUtils.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/ProxyUtils.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/ProxyUtils.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.invoker.NullInvoker; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/exception/InvokerException.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/exception/InvokerException.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/exception/InvokerException.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/exception/InvokerException.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/main/java/org/apache/commons/proxy/exception/ObjectProviderException.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/exception/ObjectProviderException.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/exception/ObjectProviderException.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/exception/ObjectProviderException.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/main/java/org/apache/commons/proxy/exception/ProxyFactoryException.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/exception/ProxyFactoryException.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/exception/ProxyFactoryException.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/exception/ProxyFactoryException.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/main/java/org/apache/commons/proxy/factory/cglib/CglibProxyFactory.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/cglib/CglibProxyFactory.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/cglib/CglibProxyFactory.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/cglib/CglibProxyFactory.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.cglib; import net.sf.cglib.proxy.Callback; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistInvocation.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistInvocation.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistInvocation.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistInvocation.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.javassist; import javassist.CannotCompileException; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistProxyFactory.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistProxyFactory.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistProxyFactory.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistProxyFactory.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.javassist; import javassist.CannotCompileException; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistUtils.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistUtils.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistUtils.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/javassist/JavassistUtils.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.javassist; import javassist.CannotCompileException; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/AbstractProxyClassGenerator.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/AbstractProxyClassGenerator.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/AbstractProxyClassGenerator.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/AbstractProxyClassGenerator.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 java.lang.reflect.Method; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/AbstractSubclassingProxyFactory.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/AbstractSubclassingProxyFactory.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/AbstractSubclassingProxyFactory.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/AbstractSubclassingProxyFactory.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 org.apache.commons.proxy.ProxyFactory; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/MethodSignature.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/MethodSignature.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/MethodSignature.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/MethodSignature.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 java.lang.reflect.Method; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/ProxyClassCache.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/ProxyClassCache.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/ProxyClassCache.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/ProxyClassCache.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 java.lang.ref.WeakReference; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/ProxyClassGenerator.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/ProxyClassGenerator.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/ProxyClassGenerator.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/factory/util/ProxyClassGenerator.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; /** Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/ExecutorInterceptor.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/ExecutorInterceptor.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/ExecutorInterceptor.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/ExecutorInterceptor.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 EDU.oswego.cs.dl.util.concurrent.Executor; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/FilteredInterceptor.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/FilteredInterceptor.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/FilteredInterceptor.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/FilteredInterceptor.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.proxy.Invocation; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/InterceptorChain.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/InterceptorChain.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/InterceptorChain.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/InterceptorChain.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.proxy.ObjectProvider; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/LoggingInterceptor.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/LoggingInterceptor.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/LoggingInterceptor.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/LoggingInterceptor.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/main/java/org/apache/commons/proxy/interceptor/MethodFilter.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/MethodFilter.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/MethodFilter.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/MethodFilter.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 java.lang.reflect.Method; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/MethodInterceptorAdapter.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/MethodInterceptorAdapter.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/MethodInterceptorAdapter.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/MethodInterceptorAdapter.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.aopalliance.intercept.MethodInterceptor; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/filter/PatternFilter.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/filter/PatternFilter.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/filter/PatternFilter.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/filter/PatternFilter.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 org.apache.commons.proxy.interceptor.MethodFilter; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/filter/ReturnTypeFilter.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/filter/ReturnTypeFilter.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/filter/ReturnTypeFilter.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/filter/ReturnTypeFilter.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 org.apache.commons.proxy.interceptor.MethodFilter; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/filter/SimpleFilter.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/filter/SimpleFilter.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/filter/SimpleFilter.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/interceptor/filter/SimpleFilter.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 org.apache.commons.proxy.interceptor.MethodFilter; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/invoker/InvocationHandlerAdapter.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/invoker/InvocationHandlerAdapter.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/invoker/InvocationHandlerAdapter.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/invoker/InvocationHandlerAdapter.java Fri Sep 28 07:36:20 2007 @@ -1,10 +1,10 @@ -/* $Id:InvocationHandlerAdapter.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 org.apache.commons.proxy.Invoker; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/invoker/NullInvoker.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/invoker/NullInvoker.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/invoker/NullInvoker.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/invoker/NullInvoker.java Fri Sep 28 07:36:20 2007 @@ -1,10 +1,10 @@ -/* $Id:NullInvoker.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 org.apache.commons.proxy.Invoker; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/invoker/XmlRpcInvoker.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/invoker/XmlRpcInvoker.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/invoker/XmlRpcInvoker.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/invoker/XmlRpcInvoker.java Fri Sep 28 07:36:20 2007 @@ -1,10 +1,10 @@ -/* $Id:XmlRpcInvoker.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 org.apache.commons.proxy.Invoker; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/BeanProvider.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/BeanProvider.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/BeanProvider.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/BeanProvider.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; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/BurlapProvider.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/BurlapProvider.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/BurlapProvider.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/BurlapProvider.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 com.caucho.burlap.client.BurlapProxyFactory; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/CloningProvider.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/CloningProvider.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/CloningProvider.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/CloningProvider.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; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/ConstantProvider.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/ConstantProvider.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/ConstantProvider.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/ConstantProvider.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; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/HessianProvider.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/HessianProvider.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/HessianProvider.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/HessianProvider.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 com.caucho.hessian.client.HessianProxyFactory; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/JaxRpcProvider.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/JaxRpcProvider.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/JaxRpcProvider.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/JaxRpcProvider.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; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/NullProvider.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/NullProvider.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/NullProvider.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/NullProvider.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; /** Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/ProviderDecorator.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/ProviderDecorator.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/ProviderDecorator.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/ProviderDecorator.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; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/ProviderUtils.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/ProviderUtils.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/ProviderUtils.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/ProviderUtils.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; Modified: commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/RmiProvider.java URL: http://svn.apache.org/viewvc/commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/RmiProvider.java?rev=580372&r1=580371&r2=580372&view=diff ============================================================================== --- commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/RmiProvider.java (original) +++ commons/sandbox/proxy/trunk/src/main/java/org/apache/commons/proxy/provider/RmiProvider.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;