Merge "Bug 7172 - Correct error-info for missing-attribute errors"
[netconf.git] / netconf / tools / netconf-testtool / src / main / java / org / opendaylight / netconf / test / tool / customrpc / Rpc.java
1 /*
2  * Copyright (c) 2016 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.netconf.test.tool.customrpc;
10
11 import java.util.List;
12 import javax.xml.bind.annotation.XmlElement;
13
14 class Rpc {
15
16     @XmlElement(name = "input")
17     private XmlData input;
18
19     @XmlElement(name = "output")
20     private List<XmlData> output;
21
22     XmlData getInput() {
23         return input;
24     }
25
26     List<XmlData> getOutput() {
27         return output;
28     }
29 }