Bug 2766: Fixed parsing and serializing XPath Instance Identifiers
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / CompositeNodeModificationTOImpl.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;
9
10 import java.util.List;
11
12 import org.opendaylight.yangtools.yang.common.QName;
13 import org.opendaylight.yangtools.yang.data.api.CompositeNode;
14 import org.opendaylight.yangtools.yang.data.api.ModifyAction;
15 import org.opendaylight.yangtools.yang.data.api.Node;
16 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
17
18 /**
19  * @author michal.rehak
20  *
21  * @deprecated Use one of the {@link NormalizedNode} implementations.
22  */
23 @Deprecated
24 public class CompositeNodeModificationTOImpl extends CompositeNodeTOImpl {
25     private static final long serialVersionUID = 1L;
26
27     /**
28      * @param qname
29      * @param parent
30      * @param value
31      * @param modifyAction
32      */
33     public CompositeNodeModificationTOImpl(final QName qname, final CompositeNode parent,
34             final List<Node<?>> value, final ModifyAction modifyAction) {
35         super(qname, parent, value);
36         super.setModificationAction(modifyAction);
37     }
38 }