BUG-9265: Switch empty type mapping from Void to Empty
[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 javax.annotation.Nonnull;
13 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
14
15 public abstract class AbstractImmutableNormalizedValueNode<K extends PathArgument, V> extends
16         AbstractImmutableNormalizedNode<K, V> {
17
18     @Nonnull
19     private final V value;
20
21     protected AbstractImmutableNormalizedValueNode(final K nodeIdentifier, @Nonnull final V value) {
22         super(nodeIdentifier);
23         this.value = requireNonNull(value);
24     }
25
26     @Override
27     public final V getValue() {
28         return wrapValue(value);
29     }
30
31     @Nonnull
32     protected final V value() {
33         return value;
34     }
35
36     protected V wrapValue(final V value) {
37         return value;
38     }
39 }