Rework NormalizedNode type hierarchy
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / nodes / AbstractImmutableNormalizedValueNode.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 static java.util.Objects.requireNonNull;
11
12 import org.eclipse.jdt.annotation.NonNull;
13 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
14 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
15
16 public abstract class AbstractImmutableNormalizedValueNode<K extends PathArgument, N extends NormalizedNode, V>
17         extends AbstractImmutableNormalizedNode<K, N> {
18     private final @NonNull V value;
19
20     protected AbstractImmutableNormalizedValueNode(final K nodeIdentifier, final @NonNull V value) {
21         super(nodeIdentifier);
22         this.value = requireNonNull(value);
23     }
24
25     @Override
26     public final V body() {
27         return wrapValue(value);
28     }
29
30     protected final @NonNull V value() {
31         return value;
32     }
33
34     protected V wrapValue(final V valueToWrap) {
35         return valueToWrap;
36     }
37 }