You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by fi...@apache.org on 2006/05/27 03:36:13 UTC

svn commit: r409792 - in /jackrabbit/trunk/jca: ./ src/java/org/apache/jackrabbit/jca/ src/test/org/apache/jackrabbit/jca/test/

Author: fielding
Date: Fri May 26 18:36:12 2006
New Revision: 409792

URL: http://svn.apache.org/viewvc?rev=409792&view=rev
Log:
[JCR-356] update license header

Modified:
    jackrabbit/trunk/jca/HEADER.txt
    jackrabbit/trunk/jca/README.txt
    jackrabbit/trunk/jca/project.properties
    jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAConnectionManager.java
    jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAConnectionRequestInfo.java
    jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAManagedConnection.java
    jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAManagedConnectionFactory.java
    jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCARepositoryHandle.java
    jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCARepositoryManager.java
    jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCASessionHandle.java
    jackrabbit/trunk/jca/src/test/org/apache/jackrabbit/jca/test/AbstractTestCase.java
    jackrabbit/trunk/jca/src/test/org/apache/jackrabbit/jca/test/ConnectionFactoryTest.java

Modified: jackrabbit/trunk/jca/HEADER.txt
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jca/HEADER.txt?rev=409792&r1=409791&r2=409792&view=diff
==============================================================================
--- jackrabbit/trunk/jca/HEADER.txt (original)
+++ jackrabbit/trunk/jca/HEADER.txt Fri May 26 18:36:12 2006
@@ -1,9 +1,10 @@
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  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
+ * 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
  *
@@ -12,4 +13,4 @@
  * 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.
- */
\ No newline at end of file
+ */

Modified: jackrabbit/trunk/jca/README.txt
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jca/README.txt?rev=409792&r1=409791&r2=409792&view=diff
==============================================================================
--- jackrabbit/trunk/jca/README.txt (original)
+++ jackrabbit/trunk/jca/README.txt Fri May 26 18:36:12 2006
@@ -34,15 +34,17 @@
 
 Collective work: Copyright 2006 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
+     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: jackrabbit/trunk/jca/project.properties
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jca/project.properties?rev=409792&r1=409791&r2=409792&view=diff
==============================================================================
--- jackrabbit/trunk/jca/project.properties (original)
+++ jackrabbit/trunk/jca/project.properties Fri May 26 18:36:12 2006
@@ -1,8 +1,9 @@
 #  Licensed to the Apache Software Foundation (ASF) under one or more
-#  contributor license agreements.  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
+#  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
 #

Modified: jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAConnectionManager.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAConnectionManager.java?rev=409792&r1=409791&r2=409792&view=diff
==============================================================================
--- jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAConnectionManager.java (original)
+++ jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAConnectionManager.java Fri May 26 18:36:12 2006
@@ -1,9 +1,10 @@
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  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
+ * 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
  *

Modified: jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAConnectionRequestInfo.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAConnectionRequestInfo.java?rev=409792&r1=409791&r2=409792&view=diff
==============================================================================
--- jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAConnectionRequestInfo.java (original)
+++ jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAConnectionRequestInfo.java Fri May 26 18:36:12 2006
@@ -1,9 +1,10 @@
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  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
+ * 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
  *

Modified: jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAManagedConnection.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAManagedConnection.java?rev=409792&r1=409791&r2=409792&view=diff
==============================================================================
--- jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAManagedConnection.java (original)
+++ jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAManagedConnection.java Fri May 26 18:36:12 2006
@@ -1,9 +1,10 @@
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  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
+ * 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
  *

Modified: jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAManagedConnectionFactory.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAManagedConnectionFactory.java?rev=409792&r1=409791&r2=409792&view=diff
==============================================================================
--- jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAManagedConnectionFactory.java (original)
+++ jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCAManagedConnectionFactory.java Fri May 26 18:36:12 2006
@@ -1,9 +1,10 @@
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  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
+ * 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
  *

Modified: jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCARepositoryHandle.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCARepositoryHandle.java?rev=409792&r1=409791&r2=409792&view=diff
==============================================================================
--- jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCARepositoryHandle.java (original)
+++ jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCARepositoryHandle.java Fri May 26 18:36:12 2006
@@ -1,9 +1,10 @@
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  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
+ * 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
  *

Modified: jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCARepositoryManager.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCARepositoryManager.java?rev=409792&r1=409791&r2=409792&view=diff
==============================================================================
--- jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCARepositoryManager.java (original)
+++ jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCARepositoryManager.java Fri May 26 18:36:12 2006
@@ -1,9 +1,10 @@
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  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
+ * 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
  *

Modified: jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCASessionHandle.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCASessionHandle.java?rev=409792&r1=409791&r2=409792&view=diff
==============================================================================
--- jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCASessionHandle.java (original)
+++ jackrabbit/trunk/jca/src/java/org/apache/jackrabbit/jca/JCASessionHandle.java Fri May 26 18:36:12 2006
@@ -1,9 +1,10 @@
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  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
+ * 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
  *

Modified: jackrabbit/trunk/jca/src/test/org/apache/jackrabbit/jca/test/AbstractTestCase.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jca/src/test/org/apache/jackrabbit/jca/test/AbstractTestCase.java?rev=409792&r1=409791&r2=409792&view=diff
==============================================================================
--- jackrabbit/trunk/jca/src/test/org/apache/jackrabbit/jca/test/AbstractTestCase.java (original)
+++ jackrabbit/trunk/jca/src/test/org/apache/jackrabbit/jca/test/AbstractTestCase.java Fri May 26 18:36:12 2006
@@ -1,9 +1,10 @@
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  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
+ * 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
  *

Modified: jackrabbit/trunk/jca/src/test/org/apache/jackrabbit/jca/test/ConnectionFactoryTest.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jca/src/test/org/apache/jackrabbit/jca/test/ConnectionFactoryTest.java?rev=409792&r1=409791&r2=409792&view=diff
==============================================================================
--- jackrabbit/trunk/jca/src/test/org/apache/jackrabbit/jca/test/ConnectionFactoryTest.java (original)
+++ jackrabbit/trunk/jca/src/test/org/apache/jackrabbit/jca/test/ConnectionFactoryTest.java Fri May 26 18:36:12 2006
@@ -1,9 +1,10 @@
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  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
+ * 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
  *