Updated creation of Binding Spec Context to provide additional information.
[yangtools.git] / yang / yang-data-composite-node / src / main / java / org / opendaylight / yangtools / yang / data / composite / node / schema / cnsn / serializer / LeafNodeCnSnSerializer.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.composite.node.schema.cnsn.serializer;
9
10 import org.opendaylight.yangtools.yang.data.api.Node;
11 import org.opendaylight.yangtools.yang.data.api.schema.LeafNode;
12 import org.opendaylight.yangtools.yang.data.impl.NodeFactory;
13 import org.opendaylight.yangtools.yang.data.impl.schema.transform.base.serializer.LeafNodeBaseSerializer;
14 import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
15
16 public class LeafNodeCnSnSerializer extends LeafNodeBaseSerializer<Node<?>> {
17
18     @Override
19     protected Node<?> serializeLeaf(LeafSchemaNode schema, LeafNode<?> node) {
20         return NodeFactory.createMutableSimpleNode(node.getNodeType(), null, node.getValue(), null, null);
21     }
22 }