You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avalon.apache.org by Niclas Hedhman <ni...@hedhman.org> on 2004/02/18 07:46:39 UTC

Re: cvs commit: avalon-components/threads-tutorial/src/java/org/apache/avalon/cornerstone/threads/tutorial Counter.java ThreadConsumer.java

I remember someone 'high' pointed out that all Copyright notices and License 
text MUST contain "The Apache Software Foundation" and nothing else.

Niclas


On Wednesday 18 February 2004 11:27, mcconnell@apache.org wrote:
> mcconnell    2004/02/17 19:27:17
>
>   Modified:    .        build.xml
>               
> connection-api/src/java/org/apache/avalon/cornerstone/services/connection
> AbstractHandlerFactory.java AbstractService.java ConnectionHandler.java
>                         ConnectionHandlerFactory.java
>                         ConnectionManager.java DefaultHandlerFactory.java
>               
> connection-impl/src/java/org/apache/avalon/cornerstone/blocks/connection
> Connection.java DefaultConnectionManager.java
> datasources-api/src/java/org/apache/avalon/cornerstone/services/datasources
> DataSourceSelector.java
>               
> datasources-impl/src/java/org/apache/avalon/cornerstone/blocks/datasources
> DefaultDataSourceSelector.java
>                datasources-impl/src/test/datasources StandardTestCase.java
>               
> scheduler-api/src/java/org/apache/avalon/cornerstone/services/scheduler
> CronTimeTrigger.java PeriodicTimeTrigger.java Target.java
> TimeScheduler.java TimeTrigger.java TimeTriggerFactory.java Trigger.java
>                         TriggerFailureListener.java
>               
> scheduler-impl/src/java/org/apache/avalon/cornerstone/blocks/scheduler
> BinaryHeap.java DefaultTimeScheduler.java
>                         MonitorableTimeScheduler.java
>                         MonitorableTimeSchedulerMBean.java
>                         PriorityQueue.java SynchronizedPriorityQueue.java
>                         TimeScheduledEntry.java
>               
> sockets-api/src/java/org/apache/avalon/cornerstone/services/sockets
> ServerSocketFactory.java SocketFactory.java SocketManager.java
>               
> sockets-impl/src/java/org/apache/avalon/cornerstone/blocks/sockets
> AbstractTLSSocketFactory.java
>                         DefaultServerSocketFactory.java
>                         DefaultSocketFactory.java DefaultSocketManager.java
>                         SSLFactoryBuilder.java TLSServerSocketFactory.java
>                         TLSSocketFactory.java
>               
> store-api/src/java/org/apache/avalon/cornerstone/services/store
> ObjectRepository.java Repository.java Store.java StreamRepository.java
>               
> store-impl/src/java/org/apache/avalon/cornerstone/blocks/masterstore
> AbstractFileRepository.java
>                         ClassLoaderObjectInputStream.java
>                         ExtensionFileFilter.java
>                         File_Persistent_Object_Repository.java
>                         File_Persistent_Stream_Repository.java IOUtil.java
>                         RepositoryManager.java
>                         ResettableFileInputStream.java
>               
> store-impl/src/java/org/apache/avalon/cornerstone/blocks/masterstore/xml
> XMLFilePersistentObjectRepository.java
>               
> threads-api/src/java/org/apache/avalon/cornerstone/services/threads
> ThreadManager.java
>               
> threads-impl/src/java/org/apache/avalon/cornerstone/blocks/threads
> AbstractThreadManager.java
>                         DefaultThreadManager.java
>                         ResourceLimitingThreadManager.java
>               
> threads-tutorial/src/java/org/apache/avalon/cornerstone/threads/tutorial
> Counter.java ThreadConsumer.java
>   Log:
>   Fix copyright year.
>
>   Revision  Changes    Path
>   1.129     +10 -0     avalon-components/build.xml
>
>   Index: build.xml
>   ===================================================================
>   RCS file: /home/cvs/avalon-components/build.xml,v
>   retrieving revision 1.128
>   retrieving revision 1.129
>   diff -u -r1.128 -r1.129
>   --- build.xml	17 Jul 2003 21:12:40 -0000	1.128
>   +++ build.xml	18 Feb 2004 03:27:15 -0000	1.129
>   @@ -7,6 +7,7 @@
>
>    <project default="jar" name="cornerstone" basedir=".">
>
>   +
>      <property name="version" value="1.0"/>
>      <property name="build.dir" value="build"/>
>      <property name="lib.dir" value="${build.dir}/lib"/>
>   @@ -16,6 +17,15 @@
>      <property name="dist.dir" value="${build.dir}/dist"/>
>      <property name="javadoc.dir" value="${dist.dir}/docs/api"/>
>      <property name="final.name" value="cornerstone-${version}"/>
>   +
>   +  <target name="patch">
>   +    <replace summary="true" dir="."
>   +        token="Copyright 2004 Apache"
>   +        value="Copyright 1999-2004 Apache">
>   +      <include name="**/*.java"/>
>   +      <exclude name="**/target/**"/>
>   +    </replace>
>   +  </target>
>
>      <path id="src.path">
>        <pathelement location="${basedir}/connection-api/src/java"/>
>
>
>
>   1.4       +1 -1     
> avalon-components/connection-api/src/java/org/apache/avalon/cornerstone/ser
>vices/connection/AbstractHandlerFactory.java
>
>   Index: AbstractHandlerFactory.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/connection-api/src/java/org/apache/avalon/corne
>rstone/services/connection/AbstractHandlerFactory.java,v retrieving revision
> 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- AbstractHandlerFactory.java	18 Feb 2004 02:51:39 -0000	1.3
>   +++ AbstractHandlerFactory.java	18 Feb 2004 03:27:15 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/connection-api/src/java/org/apache/avalon/cornerstone/ser
>vices/connection/AbstractService.java
>
>   Index: AbstractService.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/connection-api/src/java/org/apache/avalon/corne
>rstone/services/connection/AbstractService.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- AbstractService.java	18 Feb 2004 02:51:39 -0000	1.3
>   +++ AbstractService.java	18 Feb 2004 03:27:15 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/connection-api/src/java/org/apache/avalon/cornerstone/ser
>vices/connection/ConnectionHandler.java
>
>   Index: ConnectionHandler.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/connection-api/src/java/org/apache/avalon/corne
>rstone/services/connection/ConnectionHandler.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- ConnectionHandler.java	18 Feb 2004 02:51:39 -0000	1.3
>   +++ ConnectionHandler.java	18 Feb 2004 03:27:15 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/connection-api/src/java/org/apache/avalon/cornerstone/ser
>vices/connection/ConnectionHandlerFactory.java
>
>   Index: ConnectionHandlerFactory.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/connection-api/src/java/org/apache/avalon/corne
>rstone/services/connection/ConnectionHandlerFactory.java,v retrieving
> revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- ConnectionHandlerFactory.java	18 Feb 2004 02:51:39 -0000	1.3
>   +++ ConnectionHandlerFactory.java	18 Feb 2004 03:27:15 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/connection-api/src/java/org/apache/avalon/cornerstone/ser
>vices/connection/ConnectionManager.java
>
>   Index: ConnectionManager.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/connection-api/src/java/org/apache/avalon/corne
>rstone/services/connection/ConnectionManager.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- ConnectionManager.java	18 Feb 2004 02:51:39 -0000	1.3
>   +++ ConnectionManager.java	18 Feb 2004 03:27:15 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/connection-api/src/java/org/apache/avalon/cornerstone/ser
>vices/connection/DefaultHandlerFactory.java
>
>   Index: DefaultHandlerFactory.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/connection-api/src/java/org/apache/avalon/corne
>rstone/services/connection/DefaultHandlerFactory.java,v retrieving revision
> 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- DefaultHandlerFactory.java	18 Feb 2004 02:51:39 -0000	1.3
>   +++ DefaultHandlerFactory.java	18 Feb 2004 03:27:15 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/connection-impl/src/java/org/apache/avalon/cornerstone/bl
>ocks/connection/Connection.java
>
>   Index: Connection.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/connection-impl/src/java/org/apache/avalon/corn
>erstone/blocks/connection/Connection.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- Connection.java	18 Feb 2004 02:51:39 -0000	1.3
>   +++ Connection.java	18 Feb 2004 03:27:15 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/connection-impl/src/java/org/apache/avalon/cornerstone/bl
>ocks/connection/DefaultConnectionManager.java
>
>   Index: DefaultConnectionManager.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/connection-impl/src/java/org/apache/avalon/corn
>erstone/blocks/connection/DefaultConnectionManager.java,v retrieving
> revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- DefaultConnectionManager.java	18 Feb 2004 02:51:39 -0000	1.3
>   +++ DefaultConnectionManager.java	18 Feb 2004 03:27:15 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/datasources-api/src/java/org/apache/avalon/cornerstone/se
>rvices/datasources/DataSourceSelector.java
>
>   Index: DataSourceSelector.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/datasources-api/src/java/org/apache/avalon/corn
>erstone/services/datasources/DataSourceSelector.java,v retrieving revision
> 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- DataSourceSelector.java	18 Feb 2004 02:51:39 -0000	1.3
>   +++ DataSourceSelector.java	18 Feb 2004 03:27:15 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/datasources-impl/src/java/org/apache/avalon/cornerstone/b
>locks/datasources/DefaultDataSourceSelector.java
>
>   Index: DefaultDataSourceSelector.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/datasources-impl/src/java/org/apache/avalon/cor
>nerstone/blocks/datasources/DefaultDataSourceSelector.java,v retrieving
> revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- DefaultDataSourceSelector.java	18 Feb 2004 02:51:39 -0000	1.3
>   +++ DefaultDataSourceSelector.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.3       +1 -1     
> avalon-components/datasources-impl/src/test/datasources/StandardTestCase.ja
>va
>
>   Index: StandardTestCase.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/datasources-impl/src/test/datasources/StandardT
>estCase.java,v retrieving revision 1.2
>   retrieving revision 1.3
>   diff -u -r1.2 -r1.3
>   --- StandardTestCase.java	18 Feb 2004 02:51:39 -0000	1.2
>   +++ StandardTestCase.java	18 Feb 2004 03:27:16 -0000	1.3
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/scheduler-api/src/java/org/apache/avalon/cornerstone/serv
>ices/scheduler/CronTimeTrigger.java
>
>   Index: CronTimeTrigger.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/scheduler-api/src/java/org/apache/avalon/corner
>stone/services/scheduler/CronTimeTrigger.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- CronTimeTrigger.java	18 Feb 2004 02:51:39 -0000	1.3
>   +++ CronTimeTrigger.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/scheduler-api/src/java/org/apache/avalon/cornerstone/serv
>ices/scheduler/PeriodicTimeTrigger.java
>
>   Index: PeriodicTimeTrigger.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/scheduler-api/src/java/org/apache/avalon/corner
>stone/services/scheduler/PeriodicTimeTrigger.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- PeriodicTimeTrigger.java	18 Feb 2004 02:51:39 -0000	1.3
>   +++ PeriodicTimeTrigger.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/scheduler-api/src/java/org/apache/avalon/cornerstone/serv
>ices/scheduler/Target.java
>
>   Index: Target.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/scheduler-api/src/java/org/apache/avalon/corner
>stone/services/scheduler/Target.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- Target.java	18 Feb 2004 02:51:39 -0000	1.3
>   +++ Target.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/scheduler-api/src/java/org/apache/avalon/cornerstone/serv
>ices/scheduler/TimeScheduler.java
>
>   Index: TimeScheduler.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/scheduler-api/src/java/org/apache/avalon/corner
>stone/services/scheduler/TimeScheduler.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- TimeScheduler.java	18 Feb 2004 02:51:39 -0000	1.3
>   +++ TimeScheduler.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/scheduler-api/src/java/org/apache/avalon/cornerstone/serv
>ices/scheduler/TimeTrigger.java
>
>   Index: TimeTrigger.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/scheduler-api/src/java/org/apache/avalon/corner
>stone/services/scheduler/TimeTrigger.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- TimeTrigger.java	18 Feb 2004 02:51:39 -0000	1.3
>   +++ TimeTrigger.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/scheduler-api/src/java/org/apache/avalon/cornerstone/serv
>ices/scheduler/TimeTriggerFactory.java
>
>   Index: TimeTriggerFactory.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/scheduler-api/src/java/org/apache/avalon/corner
>stone/services/scheduler/TimeTriggerFactory.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- TimeTriggerFactory.java	18 Feb 2004 02:51:39 -0000	1.3
>   +++ TimeTriggerFactory.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/scheduler-api/src/java/org/apache/avalon/cornerstone/serv
>ices/scheduler/Trigger.java
>
>   Index: Trigger.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/scheduler-api/src/java/org/apache/avalon/corner
>stone/services/scheduler/Trigger.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- Trigger.java	18 Feb 2004 02:51:39 -0000	1.3
>   +++ Trigger.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/scheduler-api/src/java/org/apache/avalon/cornerstone/serv
>ices/scheduler/TriggerFailureListener.java
>
>   Index: TriggerFailureListener.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/scheduler-api/src/java/org/apache/avalon/corner
>stone/services/scheduler/TriggerFailureListener.java,v retrieving revision
> 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- TriggerFailureListener.java	18 Feb 2004 02:51:39 -0000	1.3
>   +++ TriggerFailureListener.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.5       +2 -2     
> avalon-components/scheduler-impl/src/java/org/apache/avalon/cornerstone/blo
>cks/scheduler/BinaryHeap.java
>
>   Index: BinaryHeap.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/scheduler-impl/src/java/org/apache/avalon/corne
>rstone/blocks/scheduler/BinaryHeap.java,v retrieving revision 1.4
>   retrieving revision 1.5
>   diff -u -r1.4 -r1.5
>   --- BinaryHeap.java	18 Feb 2004 02:51:40 -0000	1.4
>   +++ BinaryHeap.java	18 Feb 2004 03:27:16 -0000	1.5
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.7       +1 -1     
> avalon-components/scheduler-impl/src/java/org/apache/avalon/cornerstone/blo
>cks/scheduler/DefaultTimeScheduler.java
>
>   Index: DefaultTimeScheduler.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/scheduler-impl/src/java/org/apache/avalon/corne
>rstone/blocks/scheduler/DefaultTimeScheduler.java,v retrieving revision 1.6
>   retrieving revision 1.7
>   diff -u -r1.6 -r1.7
>   --- DefaultTimeScheduler.java	18 Feb 2004 02:51:40 -0000	1.6
>   +++ DefaultTimeScheduler.java	18 Feb 2004 03:27:16 -0000	1.7
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/scheduler-impl/src/java/org/apache/avalon/cornerstone/blo
>cks/scheduler/MonitorableTimeScheduler.java
>
>   Index: MonitorableTimeScheduler.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/scheduler-impl/src/java/org/apache/avalon/corne
>rstone/blocks/scheduler/MonitorableTimeScheduler.java,v retrieving revision
> 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- MonitorableTimeScheduler.java	18 Feb 2004 02:51:40 -0000	1.3
>   +++ MonitorableTimeScheduler.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/scheduler-impl/src/java/org/apache/avalon/cornerstone/blo
>cks/scheduler/MonitorableTimeSchedulerMBean.java
>
>   Index: MonitorableTimeSchedulerMBean.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/scheduler-impl/src/java/org/apache/avalon/corne
>rstone/blocks/scheduler/MonitorableTimeSchedulerMBean.java,v retrieving
> revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- MonitorableTimeSchedulerMBean.java	18 Feb 2004 02:51:40 -0000	1.3
>   +++ MonitorableTimeSchedulerMBean.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.5       +2 -2     
> avalon-components/scheduler-impl/src/java/org/apache/avalon/cornerstone/blo
>cks/scheduler/PriorityQueue.java
>
>   Index: PriorityQueue.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/scheduler-impl/src/java/org/apache/avalon/corne
>rstone/blocks/scheduler/PriorityQueue.java,v retrieving revision 1.4
>   retrieving revision 1.5
>   diff -u -r1.4 -r1.5
>   --- PriorityQueue.java	18 Feb 2004 02:51:40 -0000	1.4
>   +++ PriorityQueue.java	18 Feb 2004 03:27:16 -0000	1.5
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.5       +2 -2     
> avalon-components/scheduler-impl/src/java/org/apache/avalon/cornerstone/blo
>cks/scheduler/SynchronizedPriorityQueue.java
>
>   Index: SynchronizedPriorityQueue.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/scheduler-impl/src/java/org/apache/avalon/corne
>rstone/blocks/scheduler/SynchronizedPriorityQueue.java,v retrieving revision
> 1.4
>   retrieving revision 1.5
>   diff -u -r1.4 -r1.5
>   --- SynchronizedPriorityQueue.java	18 Feb 2004 02:51:40 -0000	1.4
>   +++ SynchronizedPriorityQueue.java	18 Feb 2004 03:27:16 -0000	1.5
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.5       +1 -1     
> avalon-components/scheduler-impl/src/java/org/apache/avalon/cornerstone/blo
>cks/scheduler/TimeScheduledEntry.java
>
>   Index: TimeScheduledEntry.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/scheduler-impl/src/java/org/apache/avalon/corne
>rstone/blocks/scheduler/TimeScheduledEntry.java,v retrieving revision 1.4
>   retrieving revision 1.5
>   diff -u -r1.4 -r1.5
>   --- TimeScheduledEntry.java	18 Feb 2004 02:51:40 -0000	1.4
>   +++ TimeScheduledEntry.java	18 Feb 2004 03:27:16 -0000	1.5
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.5       +1 -1     
> avalon-components/sockets-api/src/java/org/apache/avalon/cornerstone/servic
>es/sockets/ServerSocketFactory.java
>
>   Index: ServerSocketFactory.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/sockets-api/src/java/org/apache/avalon/cornerst
>one/services/sockets/ServerSocketFactory.java,v retrieving revision 1.4
>   retrieving revision 1.5
>   diff -u -r1.4 -r1.5
>   --- ServerSocketFactory.java	18 Feb 2004 02:51:40 -0000	1.4
>   +++ ServerSocketFactory.java	18 Feb 2004 03:27:16 -0000	1.5
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.5       +1 -1     
> avalon-components/sockets-api/src/java/org/apache/avalon/cornerstone/servic
>es/sockets/SocketFactory.java
>
>   Index: SocketFactory.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/sockets-api/src/java/org/apache/avalon/cornerst
>one/services/sockets/SocketFactory.java,v retrieving revision 1.4
>   retrieving revision 1.5
>   diff -u -r1.4 -r1.5
>   --- SocketFactory.java	18 Feb 2004 02:51:40 -0000	1.4
>   +++ SocketFactory.java	18 Feb 2004 03:27:16 -0000	1.5
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.5       +1 -1     
> avalon-components/sockets-api/src/java/org/apache/avalon/cornerstone/servic
>es/sockets/SocketManager.java
>
>   Index: SocketManager.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/sockets-api/src/java/org/apache/avalon/cornerst
>one/services/sockets/SocketManager.java,v retrieving revision 1.4
>   retrieving revision 1.5
>   diff -u -r1.4 -r1.5
>   --- SocketManager.java	18 Feb 2004 02:51:40 -0000	1.4
>   +++ SocketManager.java	18 Feb 2004 03:27:16 -0000	1.5
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/sockets-impl/src/java/org/apache/avalon/cornerstone/block
>s/sockets/AbstractTLSSocketFactory.java
>
>   Index: AbstractTLSSocketFactory.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/sockets-impl/src/java/org/apache/avalon/corners
>tone/blocks/sockets/AbstractTLSSocketFactory.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- AbstractTLSSocketFactory.java	18 Feb 2004 02:51:40 -0000	1.3
>   +++ AbstractTLSSocketFactory.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.5       +1 -1     
> avalon-components/sockets-impl/src/java/org/apache/avalon/cornerstone/block
>s/sockets/DefaultServerSocketFactory.java
>
>   Index: DefaultServerSocketFactory.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/sockets-impl/src/java/org/apache/avalon/corners
>tone/blocks/sockets/DefaultServerSocketFactory.java,v retrieving revision
> 1.4
>   retrieving revision 1.5
>   diff -u -r1.4 -r1.5
>   --- DefaultServerSocketFactory.java	18 Feb 2004 02:51:40 -0000	1.4
>   +++ DefaultServerSocketFactory.java	18 Feb 2004 03:27:16 -0000	1.5
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.5       +1 -1     
> avalon-components/sockets-impl/src/java/org/apache/avalon/cornerstone/block
>s/sockets/DefaultSocketFactory.java
>
>   Index: DefaultSocketFactory.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/sockets-impl/src/java/org/apache/avalon/corners
>tone/blocks/sockets/DefaultSocketFactory.java,v retrieving revision 1.4
>   retrieving revision 1.5
>   diff -u -r1.4 -r1.5
>   --- DefaultSocketFactory.java	18 Feb 2004 02:51:40 -0000	1.4
>   +++ DefaultSocketFactory.java	18 Feb 2004 03:27:16 -0000	1.5
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.5       +1 -1     
> avalon-components/sockets-impl/src/java/org/apache/avalon/cornerstone/block
>s/sockets/DefaultSocketManager.java
>
>   Index: DefaultSocketManager.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/sockets-impl/src/java/org/apache/avalon/corners
>tone/blocks/sockets/DefaultSocketManager.java,v retrieving revision 1.4
>   retrieving revision 1.5
>   diff -u -r1.4 -r1.5
>   --- DefaultSocketManager.java	18 Feb 2004 02:51:40 -0000	1.4
>   +++ DefaultSocketManager.java	18 Feb 2004 03:27:16 -0000	1.5
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/sockets-impl/src/java/org/apache/avalon/cornerstone/block
>s/sockets/SSLFactoryBuilder.java
>
>   Index: SSLFactoryBuilder.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/sockets-impl/src/java/org/apache/avalon/corners
>tone/blocks/sockets/SSLFactoryBuilder.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- SSLFactoryBuilder.java	18 Feb 2004 02:51:40 -0000	1.3
>   +++ SSLFactoryBuilder.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.5       +1 -1     
> avalon-components/sockets-impl/src/java/org/apache/avalon/cornerstone/block
>s/sockets/TLSServerSocketFactory.java
>
>   Index: TLSServerSocketFactory.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/sockets-impl/src/java/org/apache/avalon/corners
>tone/blocks/sockets/TLSServerSocketFactory.java,v retrieving revision 1.4
>   retrieving revision 1.5
>   diff -u -r1.4 -r1.5
>   --- TLSServerSocketFactory.java	18 Feb 2004 02:51:40 -0000	1.4
>   +++ TLSServerSocketFactory.java	18 Feb 2004 03:27:16 -0000	1.5
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.5       +1 -1     
> avalon-components/sockets-impl/src/java/org/apache/avalon/cornerstone/block
>s/sockets/TLSSocketFactory.java
>
>   Index: TLSSocketFactory.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/sockets-impl/src/java/org/apache/avalon/corners
>tone/blocks/sockets/TLSSocketFactory.java,v retrieving revision 1.4
>   retrieving revision 1.5
>   diff -u -r1.4 -r1.5
>   --- TLSSocketFactory.java	18 Feb 2004 02:51:40 -0000	1.4
>   +++ TLSSocketFactory.java	18 Feb 2004 03:27:16 -0000	1.5
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/store-api/src/java/org/apache/avalon/cornerstone/services
>/store/ObjectRepository.java
>
>   Index: ObjectRepository.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/store-api/src/java/org/apache/avalon/cornerston
>e/services/store/ObjectRepository.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- ObjectRepository.java	18 Feb 2004 02:51:40 -0000	1.3
>   +++ ObjectRepository.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/store-api/src/java/org/apache/avalon/cornerstone/services
>/store/Repository.java
>
>   Index: Repository.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/store-api/src/java/org/apache/avalon/cornerston
>e/services/store/Repository.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- Repository.java	18 Feb 2004 02:51:40 -0000	1.3
>   +++ Repository.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/store-api/src/java/org/apache/avalon/cornerstone/services
>/store/Store.java
>
>   Index: Store.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/store-api/src/java/org/apache/avalon/cornerston
>e/services/store/Store.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- Store.java	18 Feb 2004 02:51:40 -0000	1.3
>   +++ Store.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/store-api/src/java/org/apache/avalon/cornerstone/services
>/store/StreamRepository.java
>
>   Index: StreamRepository.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/store-api/src/java/org/apache/avalon/cornerston
>e/services/store/StreamRepository.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- StreamRepository.java	18 Feb 2004 02:51:40 -0000	1.3
>   +++ StreamRepository.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/store-impl/src/java/org/apache/avalon/cornerstone/blocks/
>masterstore/AbstractFileRepository.java
>
>   Index: AbstractFileRepository.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/store-impl/src/java/org/apache/avalon/cornersto
>ne/blocks/masterstore/AbstractFileRepository.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- AbstractFileRepository.java	18 Feb 2004 02:51:40 -0000	1.3
>   +++ AbstractFileRepository.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.3       +2 -2     
> avalon-components/store-impl/src/java/org/apache/avalon/cornerstone/blocks/
>masterstore/ClassLoaderObjectInputStream.java
>
>   Index: ClassLoaderObjectInputStream.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/store-impl/src/java/org/apache/avalon/cornersto
>ne/blocks/masterstore/ClassLoaderObjectInputStream.java,v retrieving
> revision 1.2
>   retrieving revision 1.3
>   diff -u -r1.2 -r1.3
>   --- ClassLoaderObjectInputStream.java	18 Feb 2004 02:51:40 -0000	1.2
>   +++ ClassLoaderObjectInputStream.java	18 Feb 2004 03:27:16 -0000	1.3
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +2 -2     
> avalon-components/store-impl/src/java/org/apache/avalon/cornerstone/blocks/
>masterstore/ExtensionFileFilter.java
>
>   Index: ExtensionFileFilter.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/store-impl/src/java/org/apache/avalon/cornersto
>ne/blocks/masterstore/ExtensionFileFilter.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- ExtensionFileFilter.java	18 Feb 2004 02:51:40 -0000	1.3
>   +++ ExtensionFileFilter.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/store-impl/src/java/org/apache/avalon/cornerstone/blocks/
>masterstore/File_Persistent_Object_Repository.java
>
>   Index: File_Persistent_Object_Repository.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/store-impl/src/java/org/apache/avalon/cornersto
>ne/blocks/masterstore/File_Persistent_Object_Repository.java,v retrieving
> revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- File_Persistent_Object_Repository.java	18 Feb 2004 02:51:40 -0000	1.3
>   +++ File_Persistent_Object_Repository.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/store-impl/src/java/org/apache/avalon/cornerstone/blocks/
>masterstore/File_Persistent_Stream_Repository.java
>
>   Index: File_Persistent_Stream_Repository.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/store-impl/src/java/org/apache/avalon/cornersto
>ne/blocks/masterstore/File_Persistent_Stream_Repository.java,v retrieving
> revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- File_Persistent_Stream_Repository.java	18 Feb 2004 02:51:40 -0000	1.3
>   +++ File_Persistent_Stream_Repository.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +2 -2     
> avalon-components/store-impl/src/java/org/apache/avalon/cornerstone/blocks/
>masterstore/IOUtil.java
>
>   Index: IOUtil.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/store-impl/src/java/org/apache/avalon/cornersto
>ne/blocks/masterstore/IOUtil.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- IOUtil.java	18 Feb 2004 02:51:40 -0000	1.3
>   +++ IOUtil.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/store-impl/src/java/org/apache/avalon/cornerstone/blocks/
>masterstore/RepositoryManager.java
>
>   Index: RepositoryManager.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/store-impl/src/java/org/apache/avalon/cornersto
>ne/blocks/masterstore/RepositoryManager.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- RepositoryManager.java	18 Feb 2004 02:51:40 -0000	1.3
>   +++ RepositoryManager.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/store-impl/src/java/org/apache/avalon/cornerstone/blocks/
>masterstore/ResettableFileInputStream.java
>
>   Index: ResettableFileInputStream.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/store-impl/src/java/org/apache/avalon/cornersto
>ne/blocks/masterstore/ResettableFileInputStream.java,v retrieving revision
> 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- ResettableFileInputStream.java	18 Feb 2004 02:51:41 -0000	1.3
>   +++ ResettableFileInputStream.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/store-impl/src/java/org/apache/avalon/cornerstone/blocks/
>masterstore/xml/XMLFilePersistentObjectRepository.java
>
>   Index: XMLFilePersistentObjectRepository.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/store-impl/src/java/org/apache/avalon/cornersto
>ne/blocks/masterstore/xml/XMLFilePersistentObjectRepository.java,v
> retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- XMLFilePersistentObjectRepository.java	18 Feb 2004 02:51:41 -0000	1.3
>   +++ XMLFilePersistentObjectRepository.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.5       +2 -2     
> avalon-components/threads-api/src/java/org/apache/avalon/cornerstone/servic
>es/threads/ThreadManager.java
>
>   Index: ThreadManager.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/threads-api/src/java/org/apache/avalon/cornerst
>one/services/threads/ThreadManager.java,v retrieving revision 1.4
>   retrieving revision 1.5
>   diff -u -r1.4 -r1.5
>   --- ThreadManager.java	18 Feb 2004 02:51:41 -0000	1.4
>   +++ ThreadManager.java	18 Feb 2004 03:27:16 -0000	1.5
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.5       +1 -1     
> avalon-components/threads-impl/src/java/org/apache/avalon/cornerstone/block
>s/threads/AbstractThreadManager.java
>
>   Index: AbstractThreadManager.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/threads-impl/src/java/org/apache/avalon/corners
>tone/blocks/threads/AbstractThreadManager.java,v retrieving revision 1.4
>   retrieving revision 1.5
>   diff -u -r1.4 -r1.5
>   --- AbstractThreadManager.java	18 Feb 2004 02:51:41 -0000	1.4
>   +++ AbstractThreadManager.java	18 Feb 2004 03:27:16 -0000	1.5
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.5       +1 -1     
> avalon-components/threads-impl/src/java/org/apache/avalon/cornerstone/block
>s/threads/DefaultThreadManager.java
>
>   Index: DefaultThreadManager.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/threads-impl/src/java/org/apache/avalon/corners
>tone/blocks/threads/DefaultThreadManager.java,v retrieving revision 1.4
>   retrieving revision 1.5
>   diff -u -r1.4 -r1.5
>   --- DefaultThreadManager.java	18 Feb 2004 02:51:41 -0000	1.4
>   +++ DefaultThreadManager.java	18 Feb 2004 03:27:16 -0000	1.5
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/threads-impl/src/java/org/apache/avalon/cornerstone/block
>s/threads/ResourceLimitingThreadManager.java
>
>   Index: ResourceLimitingThreadManager.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/threads-impl/src/java/org/apache/avalon/corners
>tone/blocks/threads/ResourceLimitingThreadManager.java,v retrieving revision
> 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- ResourceLimitingThreadManager.java	18 Feb 2004 02:51:41 -0000	1.3
>   +++ ResourceLimitingThreadManager.java	18 Feb 2004 03:27:16 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/threads-tutorial/src/java/org/apache/avalon/cornerstone/t
>hreads/tutorial/Counter.java
>
>   Index: Counter.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/threads-tutorial/src/java/org/apache/avalon/cor
>nerstone/threads/tutorial/Counter.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- Counter.java	18 Feb 2004 02:51:41 -0000	1.3
>   +++ Counter.java	18 Feb 2004 03:27:17 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>   1.4       +1 -1     
> avalon-components/threads-tutorial/src/java/org/apache/avalon/cornerstone/t
>hreads/tutorial/ThreadConsumer.java
>
>   Index: ThreadConsumer.java
>   ===================================================================
>   RCS file:
> /home/cvs/avalon-components/threads-tutorial/src/java/org/apache/avalon/cor
>nerstone/threads/tutorial/ThreadConsumer.java,v retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- ThreadConsumer.java	18 Feb 2004 02:51:41 -0000	1.3
>   +++ ThreadConsumer.java	18 Feb 2004 03:27:17 -0000	1.4
>   @@ -1,5 +1,5 @@
>    /*
>   - * Copyright 2004 Apache Software Foundation
>   + * Copyright 1999-2004 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
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
> For additional commands, e-mail: cvs-help@avalon.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@avalon.apache.org
For additional commands, e-mail: dev-help@avalon.apache.org