Integrate netconf-mapping-api into netconf-server
[netconf.git] / protocol / netconf-server / src / test / java / org / opendaylight / netconf / server / spi / SubtreeFilterRpcTest.java
similarity index 91%
rename from protocol/netconf-util/src/test/java/org/opendaylight/netconf/util/messages/SubtreeFilterRpcTest.java
rename to protocol/netconf-server/src/test/java/org/opendaylight/netconf/server/spi/SubtreeFilterRpcTest.java
index aa701658b50c8da83a39fec9c0376640bb2ad652..9aca8becdb821c0a8cfa6787666f6d13608df9bd 100644 (file)
@@ -5,8 +5,7 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
-package org.opendaylight.netconf.util.messages;
+package org.opendaylight.netconf.server.spi;
 
 import static org.junit.Assert.assertTrue;
 
@@ -42,7 +41,7 @@ public class SubtreeFilterRpcTest {
         return result;
     }
 
-    public SubtreeFilterRpcTest(int directoryIndex) {
+    public SubtreeFilterRpcTest(final int directoryIndex) {
         this.directoryIndex = directoryIndex;
     }
 
@@ -63,7 +62,7 @@ public class SubtreeFilterRpcTest {
 
     }
 
-    public Document getDocument(String fileName) throws SAXException, IOException {
+    public Document getDocument(final String fileName) throws SAXException, IOException {
         return XmlUtil.readXmlToDocument(
                 getClass().getResourceAsStream("/subtree/rpc/" + directoryIndex + "/" + fileName));
     }