Author: hammant
Date: Sun Aug 22 19:21:23 2004
New Revision: 36740

Modified:
   
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/AbstractFilePersistentObjectRepository.java
   
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/AbstractFilePersistentStreamRepository.java
   
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/AvalonFileRepositoryMonitor.java
   
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/FileRepositoryMonitor.java
   
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/ObjectRespositoryConfig.java
   
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/ObjectRespositoryConfigBean.java
   
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/xml/AbstractXMLFilePersistentObjectRepository.java
Log:
copyright headers

Modified: 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/AbstractFilePersistentObjectRepository.java
==============================================================================
--- 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/AbstractFilePersistentObjectRepository.java
    (original)
+++ 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/AbstractFilePersistentObjectRepository.java
    Sun Aug 22 19:21:23 2004
@@ -1,3 +1,19 @@
+/*

+ * Copyright 1999-2004 The Apache Software Foundation

+ * Licensed  under the  Apache License,  Version 2.0  (the "License");

+ * you may not use  this file  except in  compliance with the License.

+ * You may obtain a copy of the License at

+ *

+ *   http://www.apache.org/licenses/LICENSE-2.0

+ *

+ * Unless required by applicable law or agreed to in writing, software

+ * distributed  under the  License is distributed on an "AS IS" BASIS,

+ * WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or

+ * implied.

+ *

+ * See the License for the specific language governing permissions and

+ * limitations under the License.

+ */

 package org.apache.avalon.cornerstone.blocks.masterstore;

 

 import org.apache.avalon.cornerstone.services.store.ObjectRepository;


Modified: 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/AbstractFilePersistentStreamRepository.java
==============================================================================
--- 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/AbstractFilePersistentStreamRepository.java
    (original)
+++ 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/AbstractFilePersistentStreamRepository.java
    Sun Aug 22 19:21:23 2004
@@ -1,3 +1,19 @@
+/*

+ * Copyright 1999-2004 The Apache Software Foundation

+ * Licensed  under the  Apache License,  Version 2.0  (the "License");

+ * you may not use  this file  except in  compliance with the License.

+ * You may obtain a copy of the License at

+ *

+ *   http://www.apache.org/licenses/LICENSE-2.0

+ *

+ * Unless required by applicable law or agreed to in writing, software

+ * distributed  under the  License is distributed on an "AS IS" BASIS,

+ * WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or

+ * implied.

+ *

+ * See the License for the specific language governing permissions and

+ * limitations under the License.

+ */

 package org.apache.avalon.cornerstone.blocks.masterstore;

 

 import java.io.InputStream;


Modified: 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/AvalonFileRepositoryMonitor.java
==============================================================================
--- 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/AvalonFileRepositoryMonitor.java
       (original)
+++ 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/AvalonFileRepositoryMonitor.java
       Sun Aug 22 19:21:23 2004
@@ -1,3 +1,19 @@
+/*

+ * Copyright 1999-2004 The Apache Software Foundation

+ * Licensed  under the  Apache License,  Version 2.0  (the "License");

+ * you may not use  this file  except in  compliance with the License.

+ * You may obtain a copy of the License at

+ *

+ *   http://www.apache.org/licenses/LICENSE-2.0

+ *

+ * Unless required by applicable law or agreed to in writing, software

+ * distributed  under the  License is distributed on an "AS IS" BASIS,

+ * WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or

+ * implied.

+ *

+ * See the License for the specific language governing permissions and

+ * limitations under the License.

+ */

 package org.apache.avalon.cornerstone.blocks.masterstore;

 

 import org.apache.avalon.framework.logger.AbstractLogEnabled;

@@ -47,6 +63,6 @@
     }

 

     public void unExpectedIOException(Class aClass, String message, IOException ioe) {

-        getLogger().warn( message, ioe );        

+        getLogger().warn( message, ioe );

     }

 }


Modified: 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/FileRepositoryMonitor.java
==============================================================================
--- 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/FileRepositoryMonitor.java
     (original)
+++ 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/FileRepositoryMonitor.java
     Sun Aug 22 19:21:23 2004
@@ -1,3 +1,19 @@
+/*

+ * Copyright 1999-2004 The Apache Software Foundation

+ * Licensed  under the  Apache License,  Version 2.0  (the "License");

+ * you may not use  this file  except in  compliance with the License.

+ * You may obtain a copy of the License at

+ *

+ *   http://www.apache.org/licenses/LICENSE-2.0

+ *

+ * Unless required by applicable law or agreed to in writing, software

+ * distributed  under the  License is distributed on an "AS IS" BASIS,

+ * WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or

+ * implied.

+ *

+ * See the License for the specific language governing permissions and

+ * limitations under the License.

+ */

 package org.apache.avalon.cornerstone.blocks.masterstore;

 

 import java.io.IOException;


Modified: 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/ObjectRespositoryConfig.java
==============================================================================
--- 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/ObjectRespositoryConfig.java
   (original)
+++ 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/ObjectRespositoryConfig.java
   Sun Aug 22 19:21:23 2004
@@ -1,3 +1,19 @@
+/*

+ * Copyright 1999-2004 The Apache Software Foundation

+ * Licensed  under the  Apache License,  Version 2.0  (the "License");

+ * you may not use  this file  except in  compliance with the License.

+ * You may obtain a copy of the License at

+ *

+ *   http://www.apache.org/licenses/LICENSE-2.0

+ *

+ * Unless required by applicable law or agreed to in writing, software

+ * distributed  under the  License is distributed on an "AS IS" BASIS,

+ * WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or

+ * implied.

+ *

+ * See the License for the specific language governing permissions and

+ * limitations under the License.

+ */

 package org.apache.avalon.cornerstone.blocks.masterstore;

 

 import java.io.File;


Modified: 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/ObjectRespositoryConfigBean.java
==============================================================================
--- 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/ObjectRespositoryConfigBean.java
       (original)
+++ 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/ObjectRespositoryConfigBean.java
       Sun Aug 22 19:21:23 2004
@@ -1,3 +1,19 @@
+/*

+ * Copyright 1999-2004 The Apache Software Foundation

+ * Licensed  under the  Apache License,  Version 2.0  (the "License");

+ * you may not use  this file  except in  compliance with the License.

+ * You may obtain a copy of the License at

+ *

+ *   http://www.apache.org/licenses/LICENSE-2.0

+ *

+ * Unless required by applicable law or agreed to in writing, software

+ * distributed  under the  License is distributed on an "AS IS" BASIS,

+ * WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or

+ * implied.

+ *

+ * See the License for the specific language governing permissions and

+ * limitations under the License.

+ */

 package org.apache.avalon.cornerstone.blocks.masterstore;

 

 import java.io.File;


Modified: 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/xml/AbstractXMLFilePersistentObjectRepository.java
==============================================================================
--- 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/xml/AbstractXMLFilePersistentObjectRepository.java
     (original)
+++ 
avalon/trunk/planet/cornerstone/store/impl/src/main/org/apache/avalon/cornerstone/blocks/masterstore/xml/AbstractXMLFilePersistentObjectRepository.java
     Sun Aug 22 19:21:23 2004
@@ -1,3 +1,19 @@
+/*

+ * Copyright 1999-2004 The Apache Software Foundation

+ * Licensed  under the  Apache License,  Version 2.0  (the "License");

+ * you may not use  this file  except in  compliance with the License.

+ * You may obtain a copy of the License at

+ *

+ *   http://www.apache.org/licenses/LICENSE-2.0

+ *

+ * Unless required by applicable law or agreed to in writing, software

+ * distributed  under the  License is distributed on an "AS IS" BASIS,

+ * WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or

+ * implied.

+ *

+ * See the License for the specific language governing permissions and

+ * limitations under the License.

+ */

 package org.apache.avalon.cornerstone.blocks.masterstore.xml;

 

 import org.apache.avalon.cornerstone.blocks.masterstore.AbstractFileRepository;


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to