Repository: avro Updated Branches: refs/heads/master 03a3d6f9a -> ba11ddab1
AVRO-2118: Add missing license headers Project: http://git-wip-us.apache.org/repos/asf/avro/repo Commit: http://git-wip-us.apache.org/repos/asf/avro/commit/ba11ddab Tree: http://git-wip-us.apache.org/repos/asf/avro/tree/ba11ddab Diff: http://git-wip-us.apache.org/repos/asf/avro/diff/ba11ddab Branch: refs/heads/master Commit: ba11ddab1558f408905d0f730096e9963cb58f4c Parents: 03a3d6f Author: Niels Basjes <[email protected]> Authored: Thu Dec 14 11:45:45 2017 +0100 Committer: Niels Basjes <[email protected]> Committed: Thu Dec 14 11:45:45 2017 +0100 ---------------------------------------------------------------------- .../src/test/java/org/apache/avro/TestFixed.java | 18 ++++++++++++++++++ .../avro/compiler/idl/ResolvingVisitor.java | 17 +++++++++++++++++ lang/java/compiler/src/test/idl/cycle.avdl | 18 ++++++++++++++++++ lang/java/compiler/src/test/idl/input/cycle.avdl | 18 ++++++++++++++++++ .../compiler/src/test/idl/input/forward_ref.avdl | 18 ++++++++++++++++++ 5 files changed, 89 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/avro/blob/ba11ddab/lang/java/avro/src/test/java/org/apache/avro/TestFixed.java ---------------------------------------------------------------------- diff --git a/lang/java/avro/src/test/java/org/apache/avro/TestFixed.java b/lang/java/avro/src/test/java/org/apache/avro/TestFixed.java index da0ab5f..b3d81af 100644 --- a/lang/java/avro/src/test/java/org/apache/avro/TestFixed.java +++ b/lang/java/avro/src/test/java/org/apache/avro/TestFixed.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.avro; import org.junit.Assert; http://git-wip-us.apache.org/repos/asf/avro/blob/ba11ddab/lang/java/compiler/src/main/java/org/apache/avro/compiler/idl/ResolvingVisitor.java ---------------------------------------------------------------------- diff --git a/lang/java/compiler/src/main/java/org/apache/avro/compiler/idl/ResolvingVisitor.java b/lang/java/compiler/src/main/java/org/apache/avro/compiler/idl/ResolvingVisitor.java index 5323b18..5fd4d24 100644 --- a/lang/java/compiler/src/main/java/org/apache/avro/compiler/idl/ResolvingVisitor.java +++ b/lang/java/compiler/src/main/java/org/apache/avro/compiler/idl/ResolvingVisitor.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.avro.compiler.idl; http://git-wip-us.apache.org/repos/asf/avro/blob/ba11ddab/lang/java/compiler/src/test/idl/cycle.avdl ---------------------------------------------------------------------- diff --git a/lang/java/compiler/src/test/idl/cycle.avdl b/lang/java/compiler/src/test/idl/cycle.avdl index 78b0fc1..ab3ef43 100644 --- a/lang/java/compiler/src/test/idl/cycle.avdl +++ b/lang/java/compiler/src/test/idl/cycle.avdl @@ -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. + */ + @namespace("org.apache.avro.gen.test") protocol Cycle { http://git-wip-us.apache.org/repos/asf/avro/blob/ba11ddab/lang/java/compiler/src/test/idl/input/cycle.avdl ---------------------------------------------------------------------- diff --git a/lang/java/compiler/src/test/idl/input/cycle.avdl b/lang/java/compiler/src/test/idl/input/cycle.avdl index 07c9675..ff3fb1c 100644 --- a/lang/java/compiler/src/test/idl/input/cycle.avdl +++ b/lang/java/compiler/src/test/idl/input/cycle.avdl @@ -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. + */ + @namespace("org.apache.avro.gen") protocol Cycle { http://git-wip-us.apache.org/repos/asf/avro/blob/ba11ddab/lang/java/compiler/src/test/idl/input/forward_ref.avdl ---------------------------------------------------------------------- diff --git a/lang/java/compiler/src/test/idl/input/forward_ref.avdl b/lang/java/compiler/src/test/idl/input/forward_ref.avdl index a4f108a..dd6246b 100644 --- a/lang/java/compiler/src/test/idl/input/forward_ref.avdl +++ b/lang/java/compiler/src/test/idl/input/forward_ref.avdl @@ -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. + */ + @namespace("org.foo") protocol Import { /* Name Value record */
