Author: cstamas Date: Thu Mar 31 14:48:41 2011 New Revision: 1087322 URL: http://svn.apache.org/viewvc?rev=1087322&view=rev Log: Adding ASL headers to files that were missing it. No code change.
Modified: maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/AbstractSearchPageableRequest.java maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/AbstractZipHandle.java maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/EntryNameFilter.java maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/JavaZipFileHandle.java maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/TrueZipZipFileHandle.java maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/ZipFacade.java maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/ZipHandle.java Modified: maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/AbstractSearchPageableRequest.java URL: http://svn.apache.org/viewvc/maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/AbstractSearchPageableRequest.java?rev=1087322&r1=1087321&r2=1087322&view=diff ============================================================================== --- maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/AbstractSearchPageableRequest.java (original) +++ maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/AbstractSearchPageableRequest.java Thu Mar 31 14:48:41 2011 @@ -1,3 +1,21 @@ +/** + * 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. + */ package org.apache.maven.index; import java.util.List; Modified: maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/AbstractZipHandle.java URL: http://svn.apache.org/viewvc/maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/AbstractZipHandle.java?rev=1087322&r1=1087321&r2=1087322&view=diff ============================================================================== --- maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/AbstractZipHandle.java (original) +++ maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/AbstractZipHandle.java Thu Mar 31 14:48:41 2011 @@ -1,3 +1,21 @@ +/** + * 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. + */ package org.apache.maven.index.util.zip; import java.io.File; Modified: maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/EntryNameFilter.java URL: http://svn.apache.org/viewvc/maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/EntryNameFilter.java?rev=1087322&r1=1087321&r2=1087322&view=diff ============================================================================== --- maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/EntryNameFilter.java (original) +++ maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/EntryNameFilter.java Thu Mar 31 14:48:41 2011 @@ -1,3 +1,21 @@ +/** + * 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. + */ package org.apache.maven.index.util.zip; public interface EntryNameFilter Modified: maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/JavaZipFileHandle.java URL: http://svn.apache.org/viewvc/maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/JavaZipFileHandle.java?rev=1087322&r1=1087321&r2=1087322&view=diff ============================================================================== --- maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/JavaZipFileHandle.java (original) +++ maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/JavaZipFileHandle.java Thu Mar 31 14:48:41 2011 @@ -1,3 +1,21 @@ +/** + * 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. + */ package org.apache.maven.index.util.zip; import java.io.File; Modified: maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/TrueZipZipFileHandle.java URL: http://svn.apache.org/viewvc/maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/TrueZipZipFileHandle.java?rev=1087322&r1=1087321&r2=1087322&view=diff ============================================================================== --- maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/TrueZipZipFileHandle.java (original) +++ maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/TrueZipZipFileHandle.java Thu Mar 31 14:48:41 2011 @@ -1,3 +1,21 @@ +/** + * 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. + */ package org.apache.maven.index.util.zip; import java.io.File; Modified: maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/ZipFacade.java URL: http://svn.apache.org/viewvc/maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/ZipFacade.java?rev=1087322&r1=1087321&r2=1087322&view=diff ============================================================================== --- maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/ZipFacade.java (original) +++ maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/ZipFacade.java Thu Mar 31 14:48:41 2011 @@ -1,3 +1,21 @@ +/** + * 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. + */ package org.apache.maven.index.util.zip; import java.io.File; Modified: maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/ZipHandle.java URL: http://svn.apache.org/viewvc/maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/ZipHandle.java?rev=1087322&r1=1087321&r2=1087322&view=diff ============================================================================== --- maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/ZipHandle.java (original) +++ maven/indexer/trunk/indexer-core/src/main/java/org/apache/maven/index/util/zip/ZipHandle.java Thu Mar 31 14:48:41 2011 @@ -1,3 +1,21 @@ +/** + * 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. + */ package org.apache.maven.index.util.zip; import java.io.IOException;