Merge "Fixed incorrect test location."
[yangtools.git] / code-generator / binding-data-codec / src / main / java / org / opendaylight / yangtools / binding / data / codec / impl / LeafNodeCodecContext.java
1 /*
2  * Copyright (c) 2014 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.binding.data.codec.impl;
9
10 import org.opendaylight.yangtools.concepts.Codec;
11 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
12 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
13
14 class LeafNodeCodecContext extends NodeCodecContext {
15
16     private final YangInstanceIdentifier.PathArgument yangIdentifier;
17     private final Codec<Object, Object> valueCodec;
18
19     LeafNodeCodecContext(final DataSchemaNode node, final Codec<Object, Object> codec) {
20         this.yangIdentifier = new YangInstanceIdentifier.NodeIdentifier(node.getQName());
21         this.valueCodec = codec;
22     }
23
24     @Override
25     protected YangInstanceIdentifier.PathArgument getDomPathArgument() {
26         return (yangIdentifier);
27     }
28
29     protected Codec<Object, Object> getValueCodec() {
30         return valueCodec;
31     }
32
33 }