2 * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved.
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
8 package org.opendaylight.yangtools.yang.data.impl.schema.nodes;
10 import static java.util.Objects.requireNonNull;
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 import org.opendaylight.yangtools.yang.data.spi.node.AbstractNormalizedNode;
17 public abstract class AbstractImmutableNormalizedValueNode<K extends PathArgument, N extends NormalizedNode, V>
18 extends AbstractNormalizedNode<K, N> {
19 private final @NonNull V value;
21 protected AbstractImmutableNormalizedValueNode(final K nodeIdentifier, final @NonNull V value) {
22 super(nodeIdentifier);
23 this.value = requireNonNull(value);
27 public final V body() {
28 return wrapValue(value);
31 protected final @NonNull V value() {
35 protected V wrapValue(final V valueToWrap) {