A race condition occurs between ARPHandler and HostTracker if the ARP
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-data-impl / src / main / java / org / opendaylight / controller / yang / data / impl / CompositeNodeModificationTOImpl.java
1 /*\r
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.\r
3  *\r
4  * This program and the accompanying materials are made available under the\r
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
6  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
7  */\r
8 package org.opendaylight.controller.yang.data.impl;\r
9 \r
10 import java.util.List;\r
11 \r
12 import org.opendaylight.controller.yang.common.QName;\r
13 import org.opendaylight.controller.yang.data.api.CompositeNode;\r
14 import org.opendaylight.controller.yang.data.api.ModifyAction;\r
15 import org.opendaylight.controller.yang.data.api.Node;\r
16 \r
17 /**\r
18  * @author michal.rehak\r
19  * \r
20  */\r
21 public class CompositeNodeModificationTOImpl extends CompositeNodeTOImpl {\r
22 \r
23     /**\r
24      * @param qname\r
25      * @param parent\r
26      * @param value\r
27      * @param modifyAction\r
28      */\r
29     public CompositeNodeModificationTOImpl(QName qname, CompositeNode parent,\r
30             List<Node<?>> value, ModifyAction modifyAction) {\r
31         super(qname, parent, value);\r
32         super.setModificationAction(modifyAction);\r
33     }\r
34 }\r