Add license headers and make the classes final
Project: http://git-wip-us.apache.org/repos/asf/incubator-reef/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-reef/commit/54609060 Tree: http://git-wip-us.apache.org/repos/asf/incubator-reef/tree/54609060 Diff: http://git-wip-us.apache.org/repos/asf/incubator-reef/diff/54609060 Branch: refs/heads/REEF-395 Commit: 5460906010d233a473f9f68d82bf16a251eff825 Parents: 5a08198 Author: Yunseong Lee <[email protected]> Authored: Tue Jun 23 20:40:20 2015 +0900 Committer: Yunseong Lee <[email protected]> Committed: Tue Jun 23 20:40:20 2015 +0900 ---------------------------------------------------------------------- .../formats/AvroClassHierarchySerializer.java | 20 +++++++++++++++++++- .../tang/formats/ClassHierarchySerializer.java | 18 ++++++++++++++++++ .../implementation/java/AvroClassHierarchy.java | 20 +++++++++++++++++++- 3 files changed, 56 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/54609060/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/formats/AvroClassHierarchySerializer.java ---------------------------------------------------------------------- diff --git a/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/formats/AvroClassHierarchySerializer.java b/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/formats/AvroClassHierarchySerializer.java index 6c95498..7cbe502 100644 --- a/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/formats/AvroClassHierarchySerializer.java +++ b/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/formats/AvroClassHierarchySerializer.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.reef.tang.formats; import org.apache.avro.file.DataFileReader; @@ -20,7 +38,7 @@ import java.util.List; * Serialize and Deserialize ClassHierarchy to and from AvroClassHierarchy. * This class is stateless and is therefore safe to reuse. */ -public class AvroClassHierarchySerializer implements ClassHierarchySerializer { +public final class AvroClassHierarchySerializer implements ClassHierarchySerializer { /** * The Charset used for the JSON encoding. http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/54609060/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/formats/ClassHierarchySerializer.java ---------------------------------------------------------------------- diff --git a/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/formats/ClassHierarchySerializer.java b/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/formats/ClassHierarchySerializer.java index 4b7c357..a89f4c9 100644 --- a/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/formats/ClassHierarchySerializer.java +++ b/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/formats/ClassHierarchySerializer.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.reef.tang.formats; import org.apache.reef.tang.ClassHierarchy; http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/54609060/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/implementation/java/AvroClassHierarchy.java ---------------------------------------------------------------------- diff --git a/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/implementation/java/AvroClassHierarchy.java b/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/implementation/java/AvroClassHierarchy.java index 761fa5d..ef75cbc 100644 --- a/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/implementation/java/AvroClassHierarchy.java +++ b/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/implementation/java/AvroClassHierarchy.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.reef.tang.implementation.java; import org.apache.reef.tang.ClassHierarchy; @@ -14,7 +32,7 @@ import java.util.List; /** * Implementation of ClassHierarchy for Avro */ -public class AvroClassHierarchy implements ClassHierarchy { +public final class AvroClassHierarchy implements ClassHierarchy { private final PackageNode namespace; private final HashMap<String, Node> lookupTable = new HashMap<>();
