Merge "Removing { } from NormalizedNodeJsonBodyWriter"
[controller.git] / opendaylight / netconf / netconf-testtool / src / main / java / org / opendaylight / controller / netconf / test / tool / rpc / DataList.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
9 package org.opendaylight.controller.netconf.test.tool.rpc;
10
11 import java.util.Collections;
12 import java.util.List;
13 import org.opendaylight.controller.netconf.util.xml.XmlElement;
14
15 public class DataList {
16
17     private List<XmlElement> configList = Collections.emptyList();
18
19     public List<XmlElement> getConfigList() {
20         return configList;
21     }
22
23     public void setConfigList(List<XmlElement> configList) {
24         this.configList = configList;
25     }
26
27     public void resetConfigList() {
28         configList = Collections.emptyList();
29     }
30
31 }