ANY23-324 Added license to TagSoupParsingConfiguration
Project: http://git-wip-us.apache.org/repos/asf/any23/repo Commit: http://git-wip-us.apache.org/repos/asf/any23/commit/07f7421c Tree: http://git-wip-us.apache.org/repos/asf/any23/tree/07f7421c Diff: http://git-wip-us.apache.org/repos/asf/any23/diff/07f7421c Branch: refs/heads/master Commit: 07f7421cd5288b7440bd1a88c21019503770f760 Parents: 2c76ada Author: Hans <[email protected]> Authored: Tue Jan 23 12:18:18 2018 -0600 Committer: Hans <[email protected]> Committed: Tue Jan 23 12:18:18 2018 -0600 ---------------------------------------------------------------------- .../html/TagSoupParsingConfiguration.java | 22 ++++++++++++++++++++ 1 file changed, 22 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/any23/blob/07f7421c/core/src/main/java/org/apache/any23/extractor/html/TagSoupParsingConfiguration.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/any23/extractor/html/TagSoupParsingConfiguration.java b/core/src/main/java/org/apache/any23/extractor/html/TagSoupParsingConfiguration.java index 1cf2538..77e4524 100644 --- a/core/src/main/java/org/apache/any23/extractor/html/TagSoupParsingConfiguration.java +++ b/core/src/main/java/org/apache/any23/extractor/html/TagSoupParsingConfiguration.java @@ -1,3 +1,20 @@ +/* + * 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.any23.extractor.html; import org.apache.any23.configuration.DefaultConfiguration; @@ -15,6 +32,11 @@ import java.io.InputStream; import java.io.SequenceInputStream; import java.util.Arrays; + +/** + * The parsing configuration for a {@link TagSoupParser} + * @author Hans Brende + */ abstract class TagSoupParsingConfiguration { static final String LEGACY_PROPERTY = "any23.tagsoup.legacy";
