Merge "Bug 1113 - ietf-restconf needs to specify the version of ietf-yangtypes that...
[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 org.opendaylight.yangtools.yang.data.api.InstanceIdentifier;
11
12 import com.google.common.base.Preconditions;
13
14 public abstract class AbstractImmutableNormalizedValueNode<K extends InstanceIdentifier.PathArgument,V>
15         extends AbstractImmutableNormalizedNode<K, V> {
16
17     private final V value;
18
19     protected AbstractImmutableNormalizedValueNode(final K nodeIdentifier, final V value) {
20         super(nodeIdentifier);
21         this.value = Preconditions.checkNotNull(value, "value");
22     }
23
24     @Override
25     public final V getValue() {
26         return value;
27     }
28 }