Abstract infrastructure for normalized nodes translation.
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / nodes / AbstractImmutableDataContainerNode.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.data.impl.schema.nodes;
9
10 import java.util.Map;
11
12 import org.opendaylight.yangtools.concepts.Immutable;
13 import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier.PathArgument;
14 import org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild;
15 import org.opendaylight.yangtools.yang.data.api.schema.DataContainerNode;
16
17 import com.google.common.base.Optional;
18 import com.google.common.collect.ImmutableList;
19
20 public abstract class AbstractImmutableDataContainerNode<K extends PathArgument> //
21         extends AbstractImmutableNormalizedNode<K, Iterable<DataContainerChild<? extends PathArgument, ?>>> //
22         implements Immutable, DataContainerNode<K> {
23
24     protected final Map<PathArgument, DataContainerChild<? extends PathArgument, ?>> children;
25
26
27     public AbstractImmutableDataContainerNode(
28             final Map<PathArgument, DataContainerChild<? extends PathArgument, ?>> children, final K nodeIdentifier) {
29         super(nodeIdentifier, ImmutableList.copyOf(children.values()));
30         this.children = children;
31     }
32
33     @Override
34     public final Optional<DataContainerChild<? extends PathArgument, ?>> getChild(final PathArgument child) {
35         return Optional.<DataContainerChild<? extends PathArgument, ?>> fromNullable(children.get(child));
36     }
37
38 }