Composite node <-> normalized node serializer and deserializer
[yangtools.git] / yang / yang-data-composite-node / src / main / java / org / opendaylight / yangtools / yang / data / composite / node / schema / cnsn / serializer / LeafSetNodeCnSnSerializer.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.LeafSetEntryNode;
12 import org.opendaylight.yangtools.yang.data.impl.schema.transform.FromNormalizedNodeSerializer;
13 import org.opendaylight.yangtools.yang.data.impl.schema.transform.base.serializer.LeafSetNodeBaseSerializer;
14 import org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode;
15
16 public class LeafSetNodeCnSnSerializer extends
17         LeafSetNodeBaseSerializer<Node<?>> {
18
19     private FromNormalizedNodeSerializer<Node<?>, LeafSetEntryNode<?>, LeafListSchemaNode> leafSetEntryNodeSerializer;
20
21     public LeafSetNodeCnSnSerializer(final LeafSetEntryNodeCnSnSerializer leafSetEntryNodeSerializer) {
22         this.leafSetEntryNodeSerializer = leafSetEntryNodeSerializer;
23     }
24
25     @Override
26     protected FromNormalizedNodeSerializer<Node<?>, LeafSetEntryNode<?>, LeafListSchemaNode> getLeafSetEntryNodeSerializer() {
27         return leafSetEntryNodeSerializer;
28     }
29 }