This is an automated email from the ASF dual-hosted git repository. juanpablo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jspwiki.git
commit 8bb4d50b6ec99c1418c472fccaeb1d0a0c608117 Author: juanpablo <[email protected]> AuthorDate: Tue Mar 31 19:16:02 2020 +0200 add missing Apache License --- .../java/org/apache/wiki/api/core/ContextEnum.java | 19 +++++++++++++++++++ .../wiki/api/filters/FilterSupportOperations.java | 18 ++++++++++++++++++ .../main/java/org/apache/wiki/api/spi/ContextDSL.java | 18 ++++++++++++++++++ 3 files changed, 55 insertions(+) diff --git a/jspwiki-api/src/main/java/org/apache/wiki/api/core/ContextEnum.java b/jspwiki-api/src/main/java/org/apache/wiki/api/core/ContextEnum.java index 800aee6..b90e8b1 100644 --- a/jspwiki-api/src/main/java/org/apache/wiki/api/core/ContextEnum.java +++ b/jspwiki-api/src/main/java/org/apache/wiki/api/core/ContextEnum.java @@ -1,5 +1,24 @@ +/* + 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.wiki.api.core; + public enum ContextEnum { GROUP_DELETE( "deleteGroup", "%uDeleteGroup.jsp?group=%n", null ), diff --git a/jspwiki-api/src/main/java/org/apache/wiki/api/filters/FilterSupportOperations.java b/jspwiki-api/src/main/java/org/apache/wiki/api/filters/FilterSupportOperations.java index 85bdecd..dc63e53 100644 --- a/jspwiki-api/src/main/java/org/apache/wiki/api/filters/FilterSupportOperations.java +++ b/jspwiki-api/src/main/java/org/apache/wiki/api/filters/FilterSupportOperations.java @@ -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.wiki.api.filters; import org.apache.log4j.Logger; diff --git a/jspwiki-api/src/main/java/org/apache/wiki/api/spi/ContextDSL.java b/jspwiki-api/src/main/java/org/apache/wiki/api/spi/ContextDSL.java index 04ac3bf..909bfae 100644 --- a/jspwiki-api/src/main/java/org/apache/wiki/api/spi/ContextDSL.java +++ b/jspwiki-api/src/main/java/org/apache/wiki/api/spi/ContextDSL.java @@ -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.wiki.api.spi; import org.apache.wiki.api.core.Command;
