Bug 1869: Fixed binding-data-codec to work with empty type
[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.YangInstanceIdentifier;
11 import org.slf4j.Logger;
12 import org.slf4j.LoggerFactory;
13
14 public abstract class AbstractImmutableNormalizedValueNode<K extends YangInstanceIdentifier.PathArgument, V> extends
15         AbstractImmutableNormalizedNode<K, V> {
16
17     private static final Logger LOGGER = LoggerFactory.getLogger(AbstractImmutableNormalizedValueNode.class);
18     private final V value;
19
20     protected AbstractImmutableNormalizedValueNode(final K nodeIdentifier, final V value) {
21         super(nodeIdentifier);
22         if (value == null) {
23             /*
24              * Null value is allowed for empty type definition so it should be debug,
25              * but still we are logging it in case we need to debug missing values.
26              */
27             LOGGER.debug("The value of node {} is null",nodeIdentifier.getNodeType());
28         }
29         this.value = value;
30     }
31
32     @Override
33     public final V getValue() {
34         return value;
35     }
36 }