Move netconf{-client,impl,util} to protocol/ 02/103902/1
authorRobert Varga <robert.varga@pantheon.tech>
Tue, 3 Jan 2023 09:23:20 +0000 (10:23 +0100)
committerRobert Varga <robert.varga@pantheon.tech>
Tue, 3 Jan 2023 09:23:20 +0000 (10:23 +0100)
commit348f34800b91e88f2ef5c6aafc10ff3fc0bec80d
tree26f6d7e35b52381edf429ed8e398692e8ada00f1
parent48c500a9d2f91647b28f87c748a65347764680b0
Move netconf{-client,impl,util} to protocol/

These three artifacts are the API and client and server implementations
-- make sure we keep them in protocol/.

Change-Id: Iba32fb7533c5f1214bcb43a57cb06d2ccc2920df
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
241 files changed:
netconf/pom.xml
protocol/netconf-client/pom.xml [moved from netconf/netconf-client/pom.xml with 100% similarity]
protocol/netconf-client/src/main/java/org/opendaylight/netconf/client/AbstractClientChannelInitializer.java [moved from netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/AbstractClientChannelInitializer.java with 100% similarity]
protocol/netconf-client/src/main/java/org/opendaylight/netconf/client/NetconfClientDispatcher.java [moved from netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/NetconfClientDispatcher.java with 100% similarity]
protocol/netconf-client/src/main/java/org/opendaylight/netconf/client/NetconfClientDispatcherImpl.java [moved from netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/NetconfClientDispatcherImpl.java with 100% similarity]
protocol/netconf-client/src/main/java/org/opendaylight/netconf/client/NetconfClientSession.java [moved from netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/NetconfClientSession.java with 100% similarity]
protocol/netconf-client/src/main/java/org/opendaylight/netconf/client/NetconfClientSessionListener.java [moved from netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/NetconfClientSessionListener.java with 100% similarity]
protocol/netconf-client/src/main/java/org/opendaylight/netconf/client/NetconfClientSessionNegotiator.java [moved from netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/NetconfClientSessionNegotiator.java with 100% similarity]
protocol/netconf-client/src/main/java/org/opendaylight/netconf/client/NetconfClientSessionNegotiatorFactory.java [moved from netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/NetconfClientSessionNegotiatorFactory.java with 100% similarity]
protocol/netconf-client/src/main/java/org/opendaylight/netconf/client/SimpleNetconfClientSessionListener.java [moved from netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/SimpleNetconfClientSessionListener.java with 100% similarity]
protocol/netconf-client/src/main/java/org/opendaylight/netconf/client/SshClientChannelInitializer.java [moved from netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/SshClientChannelInitializer.java with 100% similarity]
protocol/netconf-client/src/main/java/org/opendaylight/netconf/client/SslHandlerFactory.java [moved from netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/SslHandlerFactory.java with 100% similarity]
protocol/netconf-client/src/main/java/org/opendaylight/netconf/client/TcpClientChannelInitializer.java [moved from netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/TcpClientChannelInitializer.java with 100% similarity]
protocol/netconf-client/src/main/java/org/opendaylight/netconf/client/TlsClientChannelInitializer.java [moved from netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/TlsClientChannelInitializer.java with 100% similarity]
protocol/netconf-client/src/main/java/org/opendaylight/netconf/client/conf/NetconfClientConfiguration.java [moved from netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/conf/NetconfClientConfiguration.java with 100% similarity]
protocol/netconf-client/src/main/java/org/opendaylight/netconf/client/conf/NetconfClientConfigurationBuilder.java [moved from netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/conf/NetconfClientConfigurationBuilder.java with 100% similarity]
protocol/netconf-client/src/main/java/org/opendaylight/netconf/client/conf/NetconfReconnectingClientConfiguration.java [moved from netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/conf/NetconfReconnectingClientConfiguration.java with 100% similarity]
protocol/netconf-client/src/main/java/org/opendaylight/netconf/client/conf/NetconfReconnectingClientConfigurationBuilder.java [moved from netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/conf/NetconfReconnectingClientConfigurationBuilder.java with 100% similarity]
protocol/netconf-client/src/test/java/org/opendaylight/netconf/client/NetconfClientConfigurationTest.java [moved from netconf/netconf-client/src/test/java/org/opendaylight/netconf/client/NetconfClientConfigurationTest.java with 100% similarity]
protocol/netconf-client/src/test/java/org/opendaylight/netconf/client/NetconfClientDispatcherImplTest.java [moved from netconf/netconf-client/src/test/java/org/opendaylight/netconf/client/NetconfClientDispatcherImplTest.java with 100% similarity]
protocol/netconf-client/src/test/java/org/opendaylight/netconf/client/NetconfClientSessionNegotiatorFactoryTest.java [moved from netconf/netconf-client/src/test/java/org/opendaylight/netconf/client/NetconfClientSessionNegotiatorFactoryTest.java with 100% similarity]
protocol/netconf-client/src/test/java/org/opendaylight/netconf/client/NetconfClientSessionNegotiatorTest.java [moved from netconf/netconf-client/src/test/java/org/opendaylight/netconf/client/NetconfClientSessionNegotiatorTest.java with 100% similarity]
protocol/netconf-client/src/test/java/org/opendaylight/netconf/client/NetconfClientSessionTest.java [moved from netconf/netconf-client/src/test/java/org/opendaylight/netconf/client/NetconfClientSessionTest.java with 100% similarity]
protocol/netconf-client/src/test/java/org/opendaylight/netconf/client/NetconfReconnectingClientConfigurationTest.java [moved from netconf/netconf-client/src/test/java/org/opendaylight/netconf/client/NetconfReconnectingClientConfigurationTest.java with 100% similarity]
protocol/netconf-client/src/test/java/org/opendaylight/netconf/client/SimpleNetconfClientSessionListenerTest.java [moved from netconf/netconf-client/src/test/java/org/opendaylight/netconf/client/SimpleNetconfClientSessionListenerTest.java with 100% similarity]
protocol/netconf-client/src/test/java/org/opendaylight/netconf/client/SshClientChannelInitializerTest.java [moved from netconf/netconf-client/src/test/java/org/opendaylight/netconf/client/SshClientChannelInitializerTest.java with 100% similarity]
protocol/netconf-client/src/test/java/org/opendaylight/netconf/client/TcpClientChannelInitializerTest.java [moved from netconf/netconf-client/src/test/java/org/opendaylight/netconf/client/TcpClientChannelInitializerTest.java with 100% similarity]
protocol/netconf-client/src/test/java/org/opendaylight/netconf/client/TestingNetconfClient.java [moved from netconf/netconf-client/src/test/java/org/opendaylight/netconf/client/TestingNetconfClient.java with 100% similarity]
protocol/netconf-client/src/test/java/org/opendaylight/netconf/client/TlsClientChannelInitializerTest.java [moved from netconf/netconf-client/src/test/java/org/opendaylight/netconf/client/TlsClientChannelInitializerTest.java with 100% similarity]
protocol/netconf-client/src/test/resources/get_schema.xml [moved from netconf/netconf-client/src/test/resources/get_schema.xml with 100% similarity]
protocol/netconf-client/src/test/resources/helloMessage1.xml [moved from netconf/netconf-client/src/test/resources/helloMessage1.xml with 100% similarity]
protocol/netconf-client/src/test/resources/helloMessage2.xml [moved from netconf/netconf-client/src/test/resources/helloMessage2.xml with 100% similarity]
protocol/netconf-client/src/test/resources/helloMessage3.xml [moved from netconf/netconf-client/src/test/resources/helloMessage3.xml with 100% similarity]
protocol/netconf-impl/pom.xml [moved from netconf/netconf-impl/pom.xml with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/NetconfServerDispatcherImpl.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/NetconfServerDispatcherImpl.java with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/NetconfServerSession.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/NetconfServerSession.java with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/NetconfServerSessionListener.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/NetconfServerSessionListener.java with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/NetconfServerSessionNegotiator.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/NetconfServerSessionNegotiator.java with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/NetconfServerSessionNegotiatorFactory.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/NetconfServerSessionNegotiatorFactory.java with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/NetconfServerSessionNegotiatorFactoryBuilder.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/NetconfServerSessionNegotiatorFactoryBuilder.java with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/SendErrorExceptionUtil.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/SendErrorExceptionUtil.java with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/ServerChannelInitializer.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/ServerChannelInitializer.java with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/SessionIdProvider.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/SessionIdProvider.java with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/mapping/operations/DefaultCloseSession.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/mapping/operations/DefaultCloseSession.java with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/mapping/operations/DefaultNetconfOperation.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/mapping/operations/DefaultNetconfOperation.java with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/mapping/operations/DefaultStartExi.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/mapping/operations/DefaultStartExi.java with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/mapping/operations/DefaultStopExi.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/mapping/operations/DefaultStopExi.java with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/osgi/AggregatedNetconfOperationServiceFactory.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/osgi/AggregatedNetconfOperationServiceFactory.java with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/osgi/NetconfCapabilityMonitoringService.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/osgi/NetconfCapabilityMonitoringService.java with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/osgi/NetconfMonitoringServiceImpl.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/osgi/NetconfMonitoringServiceImpl.java with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/osgi/NetconfOperationRouter.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/osgi/NetconfOperationRouter.java with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/osgi/NetconfOperationRouterImpl.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/osgi/NetconfOperationRouterImpl.java with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/osgi/NetconfSessionMonitoringService.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/osgi/NetconfSessionMonitoringService.java with 100% similarity]
protocol/netconf-impl/src/main/java/org/opendaylight/netconf/impl/util/DeserializerExceptionHandler.java [moved from netconf/netconf-impl/src/main/java/org/opendaylight/netconf/impl/util/DeserializerExceptionHandler.java with 100% similarity]
protocol/netconf-impl/src/main/yang/odl-netconf-monitoring.yang [moved from netconf/netconf-impl/src/main/yang/odl-netconf-monitoring.yang with 100% similarity]
protocol/netconf-impl/src/test/java/org/opendaylight/netconf/impl/AdditionalHeaderParserTest.java [moved from netconf/netconf-impl/src/test/java/org/opendaylight/netconf/impl/AdditionalHeaderParserTest.java with 100% similarity]
protocol/netconf-impl/src/test/java/org/opendaylight/netconf/impl/ConcurrentClientsTest.java [moved from netconf/netconf-impl/src/test/java/org/opendaylight/netconf/impl/ConcurrentClientsTest.java with 100% similarity]
protocol/netconf-impl/src/test/java/org/opendaylight/netconf/impl/ExiEncodeDecodeTest.java [moved from netconf/netconf-impl/src/test/java/org/opendaylight/netconf/impl/ExiEncodeDecodeTest.java with 100% similarity]
protocol/netconf-impl/src/test/java/org/opendaylight/netconf/impl/MessageParserTest.java [moved from netconf/netconf-impl/src/test/java/org/opendaylight/netconf/impl/MessageParserTest.java with 100% similarity]
protocol/netconf-impl/src/test/java/org/opendaylight/netconf/impl/NetconfDispatcherImplTest.java [moved from netconf/netconf-impl/src/test/java/org/opendaylight/netconf/impl/NetconfDispatcherImplTest.java with 100% similarity]
protocol/netconf-impl/src/test/java/org/opendaylight/netconf/impl/NetconfServerSessionListenerTest.java [moved from netconf/netconf-impl/src/test/java/org/opendaylight/netconf/impl/NetconfServerSessionListenerTest.java with 100% similarity]
protocol/netconf-impl/src/test/java/org/opendaylight/netconf/impl/NetconfServerSessionNegotiatorTest.java [moved from netconf/netconf-impl/src/test/java/org/opendaylight/netconf/impl/NetconfServerSessionNegotiatorTest.java with 100% similarity]
protocol/netconf-impl/src/test/java/org/opendaylight/netconf/impl/NetconfServerSessionTest.java [moved from netconf/netconf-impl/src/test/java/org/opendaylight/netconf/impl/NetconfServerSessionTest.java with 100% similarity]
protocol/netconf-impl/src/test/java/org/opendaylight/netconf/impl/SendErrorExceptionUtilTest.java [moved from netconf/netconf-impl/src/test/java/org/opendaylight/netconf/impl/SendErrorExceptionUtilTest.java with 100% similarity]
protocol/netconf-impl/src/test/java/org/opendaylight/netconf/impl/mapping/operations/DefaultCloseSessionTest.java [moved from netconf/netconf-impl/src/test/java/org/opendaylight/netconf/impl/mapping/operations/DefaultCloseSessionTest.java with 100% similarity]
protocol/netconf-impl/src/test/java/org/opendaylight/netconf/impl/mapping/operations/DefaultStopExiTest.java [moved from netconf/netconf-impl/src/test/java/org/opendaylight/netconf/impl/mapping/operations/DefaultStopExiTest.java with 100% similarity]
protocol/netconf-impl/src/test/java/org/opendaylight/netconf/impl/osgi/AggregatedNetconfOperationServiceFactoryTest.java [moved from netconf/netconf-impl/src/test/java/org/opendaylight/netconf/impl/osgi/AggregatedNetconfOperationServiceFactoryTest.java with 100% similarity]
protocol/netconf-impl/src/test/java/org/opendaylight/netconf/impl/osgi/NetconfCapabilityMonitoringServiceTest.java [moved from netconf/netconf-impl/src/test/java/org/opendaylight/netconf/impl/osgi/NetconfCapabilityMonitoringServiceTest.java with 100% similarity]
protocol/netconf-impl/src/test/java/org/opendaylight/netconf/impl/osgi/NetconfOperationRouterImplTest.java [moved from netconf/netconf-impl/src/test/java/org/opendaylight/netconf/impl/osgi/NetconfOperationRouterImplTest.java with 100% similarity]
protocol/netconf-impl/src/test/java/org/opendaylight/netconf/impl/osgi/NetconfSessionMonitoringServiceTest.java [moved from netconf/netconf-impl/src/test/java/org/opendaylight/netconf/impl/osgi/NetconfSessionMonitoringServiceTest.java with 100% similarity]
protocol/netconf-impl/src/test/java/org/opendaylight/netconf/impl/util/DeserializerExceptionHandlerTest.java [moved from netconf/netconf-impl/src/test/java/org/opendaylight/netconf/impl/util/DeserializerExceptionHandlerTest.java with 100% similarity]
protocol/netconf-impl/src/test/resources/messages/rpc.xml [moved from netconf/netconf-impl/src/test/resources/messages/rpc.xml with 100% similarity]
protocol/netconf-impl/src/test/resources/messages/rpc_ns.xml [moved from netconf/netconf-impl/src/test/resources/messages/rpc_ns.xml with 100% similarity]
protocol/netconf-util/pom.xml [moved from netconf/netconf-util/pom.xml with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/AnyXmlNamespaceContext.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/AnyXmlNamespaceContext.java with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/CloseableUtil.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/CloseableUtil.java with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/EmptyListXmlMetadataWriter.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/EmptyListXmlMetadataWriter.java with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/EmptyListXmlWriter.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/EmptyListXmlWriter.java with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/NetconfConfiguration.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/NetconfConfiguration.java with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/NetconfConfigurationHolder.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/NetconfConfigurationHolder.java with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/NetconfConfigurationImpl.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/NetconfConfigurationImpl.java with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/NetconfUtil.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/NetconfUtil.java with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/PathNode.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/PathNode.java with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/ProxyEffectiveModelContext.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/ProxyEffectiveModelContext.java with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/ProxyMountPointContext.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/ProxyMountPointContext.java with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/StreamingContext.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/StreamingContext.java with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/mapping/AbstractLastNetconfOperation.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/mapping/AbstractLastNetconfOperation.java with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/mapping/AbstractNetconfOperation.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/mapping/AbstractNetconfOperation.java with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/mapping/AbstractSingletonNetconfOperation.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/mapping/AbstractSingletonNetconfOperation.java with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/messages/FramingMechanism.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/messages/FramingMechanism.java with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/messages/NetconfMessageUtil.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/messages/NetconfMessageUtil.java with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/messages/SubtreeFilter.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/messages/SubtreeFilter.java with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/xml/HardcodedNamespaceResolver.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/xml/HardcodedNamespaceResolver.java with 100% similarity]
protocol/netconf-util/src/main/java/org/opendaylight/netconf/util/xml/XMLNetconfUtil.java [moved from netconf/netconf-util/src/main/java/org/opendaylight/netconf/util/xml/XMLNetconfUtil.java with 100% similarity]
protocol/netconf-util/src/main/resources/netconf.cfg [moved from netconf/netconf-util/src/main/resources/netconf.cfg with 100% similarity]
protocol/netconf-util/src/main/resources/org/opendaylight/controller/netconf/util/messages/server_error.xml [moved from netconf/netconf-util/src/main/resources/org/opendaylight/controller/netconf/util/messages/server_error.xml with 100% similarity]
protocol/netconf-util/src/main/resources/rfc4741.xsd [moved from netconf/netconf-util/src/main/resources/rfc4741.xsd with 100% similarity]
protocol/netconf-util/src/main/resources/xml.xsd [moved from netconf/netconf-util/src/main/resources/xml.xsd with 100% similarity]
protocol/netconf-util/src/test/java/org/opendaylight/netconf/util/CloseableUtilTest.java [moved from netconf/netconf-util/src/test/java/org/opendaylight/netconf/util/CloseableUtilTest.java with 100% similarity]
protocol/netconf-util/src/test/java/org/opendaylight/netconf/util/NetconfUtilTest.java [moved from netconf/netconf-util/src/test/java/org/opendaylight/netconf/util/NetconfUtilTest.java with 100% similarity]
protocol/netconf-util/src/test/java/org/opendaylight/netconf/util/mapping/AbstractLastNetconfOperationTest.java [moved from netconf/netconf-util/src/test/java/org/opendaylight/netconf/util/mapping/AbstractLastNetconfOperationTest.java with 100% similarity]
protocol/netconf-util/src/test/java/org/opendaylight/netconf/util/mapping/AbstractNetconfOperationTest.java [moved from netconf/netconf-util/src/test/java/org/opendaylight/netconf/util/mapping/AbstractNetconfOperationTest.java with 100% similarity]
protocol/netconf-util/src/test/java/org/opendaylight/netconf/util/mapping/AbstractSingletonNetconfOperationTest.java [moved from netconf/netconf-util/src/test/java/org/opendaylight/netconf/util/mapping/AbstractSingletonNetconfOperationTest.java with 100% similarity]
protocol/netconf-util/src/test/java/org/opendaylight/netconf/util/messages/NetconfMessageUtilTest.java [moved from netconf/netconf-util/src/test/java/org/opendaylight/netconf/util/messages/NetconfMessageUtilTest.java with 100% similarity]
protocol/netconf-util/src/test/java/org/opendaylight/netconf/util/messages/SubtreeFilterNotificationTest.java [moved from netconf/netconf-util/src/test/java/org/opendaylight/netconf/util/messages/SubtreeFilterNotificationTest.java with 100% similarity]
protocol/netconf-util/src/test/java/org/opendaylight/netconf/util/messages/SubtreeFilterRpcTest.java [moved from netconf/netconf-util/src/test/java/org/opendaylight/netconf/util/messages/SubtreeFilterRpcTest.java with 100% similarity]
protocol/netconf-util/src/test/java/org/opendaylight/netconf/util/test/NetconfXmlUnitRecursiveQualifier.java [moved from netconf/netconf-util/src/test/java/org/opendaylight/netconf/util/test/NetconfXmlUnitRecursiveQualifier.java with 100% similarity]
protocol/netconf-util/src/test/java/org/opendaylight/netconf/util/test/XmlFileLoader.java [moved from netconf/netconf-util/src/test/java/org/opendaylight/netconf/util/test/XmlFileLoader.java with 100% similarity]
protocol/netconf-util/src/test/java/org/opendaylight/netconf/util/test/XmlUnitUtil.java [moved from netconf/netconf-util/src/test/java/org/opendaylight/netconf/util/test/XmlUnitUtil.java with 100% similarity]
protocol/netconf-util/src/test/java/org/opendaylight/netconf/util/xml/HardcodedNamespaceResolverTest.java [moved from netconf/netconf-util/src/test/java/org/opendaylight/netconf/util/xml/HardcodedNamespaceResolverTest.java with 100% similarity]
protocol/netconf-util/src/test/java/org/opendaylight/netconf/util/xml/XMLNetconfUtilTest.java [moved from netconf/netconf-util/src/test/java/org/opendaylight/netconf/util/xml/XMLNetconfUtilTest.java with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/client_hello.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/client_hello.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/close-session.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/close-session.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/closeSession.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/closeSession.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/commit.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/commit.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/communicationError/testClientSendsRpcReply_expectedResponse.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/communicationError/testClientSendsRpcReply_expectedResponse.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/communicationError/testClientSendsRpcReply_request.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/communicationError/testClientSendsRpcReply_request.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/communicationError/testRpcWithoutMessageId_expectedResponse.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/communicationError/testRpcWithoutMessageId_expectedResponse.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/communicationError/testRpcWithoutMessageId_request.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/communicationError/testRpcWithoutMessageId_request.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/conflictingversion/conflictingVersionResponse.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/conflictingversion/conflictingVersionResponse.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/copy-config.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/copy-config.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/databaseInteraction/client_get_request_ConfigRegistry.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/databaseInteraction/client_get_request_ConfigRegistry.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/databaseInteraction/confg_subsystem_expected_reply.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/databaseInteraction/confg_subsystem_expected_reply.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/discardChanges.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/discardChanges.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/edit-config-delete-container-node-candidate.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/edit-config-delete-container-node-candidate.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/edit-config-delete-leaf-node-candidate.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/edit-config-delete-leaf-node-candidate.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/edit-config-test-module-running.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/edit-config-test-module-running.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/edit-config-test-module.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/edit-config-test-module.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/editConfig.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/editConfig.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/editConfig_addServiceName.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/editConfig_addServiceName.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/editConfig_addServiceNameOnTest.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/editConfig_addServiceNameOnTest.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/editConfig_expectedResult.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/editConfig_expectedResult.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/editConfig_identities.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/editConfig_identities.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/editConfig_identities_inner_replace.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/editConfig_identities_inner_replace.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/editConfig_merge_multiple-deps1.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/editConfig_merge_multiple-deps1.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/editConfig_merge_multiple-deps2.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/editConfig_merge_multiple-deps2.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/editConfig_merge_threadfactory.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/editConfig_merge_threadfactory.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/editConfig_merge_yang-test.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/editConfig_merge_yang-test.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/editConfig_none.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/editConfig_none.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/editConfig_remove.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/editConfig_remove.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/editConfig_removeServiceNameOnTest.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/editConfig_removeServiceNameOnTest.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/editConfig_removeUnknownInstance.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/editConfig_removeUnknownInstance.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/editConfig_replace_default.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/editConfig_replace_default.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/editConfig_replace_default_ex.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/editConfig_replace_default_ex.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/editConfig_replace_module.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/editConfig_replace_module.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/editConfig_replace_module_ex.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/editConfig_replace_module_ex.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/editConfig_setUnions.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/editConfig_setUnions.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/edit_config.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/edit_config.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/get-config-fields-request.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/get-config-fields-request.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/get-config-with-multiple-subtrees.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/get-config-with-multiple-subtrees.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/get-fields-request.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/get-fields-request.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/get-with-multiple-root-subtrees.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/get-with-multiple-root-subtrees.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/get-with-multiple-subtrees.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/get-with-multiple-subtrees.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/get.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/get.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/getConfig.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/getConfig.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/getConfig_candidate-filter.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/getConfig_candidate-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/getConfig_candidate.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/getConfig_candidate.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/get_schema-no-version.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/get_schema-no-version.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/get_schema.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/get_schema.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/handshake/client_hello_with_session_id.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/handshake/client_hello_with_session_id.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/handshake/client_hello_with_wrong_namespace.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/handshake/client_hello_with_wrong_namespace.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/lock-running.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/lock-running.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/lock.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/lock.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/mount/editConfig_merge_threadfactory.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/mount/editConfig_merge_threadfactory.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/mount/mount12002.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/mount/mount12002.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/mount/mount12003.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/mount/mount12003.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/mount/unmount12002.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/mount/unmount12002.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/namespaces/editConfig_differentNamespaceTO.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/namespaces/editConfig_differentNamespaceTO.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/namespaces/editConfig_sameAttrDifferentNamespaces.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/namespaces/editConfig_sameAttrDifferentNamespaces.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/namespaces/editConfig_sameAttrDifferentNamespacesList.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/namespaces/editConfig_sameAttrDifferentNamespacesList.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/namespaces/editConfig_typeNameConfigAttributeMatching.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/namespaces/editConfig_typeNameConfigAttributeMatching.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/rpc-reply_get.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/rpc-reply_get.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/rpc-reply_ok.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/rpc-reply_ok.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/rpcInner.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/rpcInner.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/rpcInnerInner.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/rpcInnerInner.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/rpcInnerInner_complex_output.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/rpcInnerInner_complex_output.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/startExi.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/startExi.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/stopExi.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/stopExi.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/threadpool-edit-config.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/threadpool-edit-config.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/unlock-running.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/unlock-running.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/unlock.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/unlock.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/unrecognised/editConfig_unrecognised1.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/unrecognised/editConfig_unrecognised1.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/unrecognised/editConfig_unrecognised2.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/unrecognised/editConfig_unrecognised2.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/unrecognised/editConfig_unrecognised3.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/unrecognised/editConfig_unrecognised3.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/unrecognised/editConfig_unrecognised4.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/unrecognised/editConfig_unrecognised4.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/unrecognised/editConfig_unrecognised5.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/unrecognised/editConfig_unrecognised5.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/unrecognised/editConfig_unrecognised6.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/unrecognised/editConfig_unrecognised6.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/unrecognised/editConfig_unrecognised7.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/unrecognised/editConfig_unrecognised7.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/unrecognised/editConfig_unrecognised8.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/unrecognised/editConfig_unrecognised8.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/validate-running.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/validate-running.xml with 100% similarity]
protocol/netconf-util/src/test/resources/netconfMessages/validate.xml [moved from netconf/netconf-util/src/test/resources/netconfMessages/validate.xml with 100% similarity]
protocol/netconf-util/src/test/resources/sessions.xml [moved from netconf/netconf-util/src/test/resources/sessions.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/notification/0/filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/notification/0/filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/notification/0/post-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/notification/0/post-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/notification/0/pre-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/notification/0/pre-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/notification/1/filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/notification/1/filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/notification/1/post-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/notification/1/post-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/notification/1/pre-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/notification/1/pre-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/notification/2/filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/notification/2/filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/notification/2/post-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/notification/2/post-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/notification/2/pre-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/notification/2/pre-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/notification/3/filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/notification/3/filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/notification/3/post-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/notification/3/post-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/notification/3/pre-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/notification/3/pre-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/notification/4/filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/notification/4/filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/notification/4/post-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/notification/4/post-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/notification/4/pre-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/notification/4/pre-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/0/post-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/0/post-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/0/pre-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/0/pre-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/0/request.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/0/request.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/1/post-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/1/post-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/1/pre-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/1/pre-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/1/request.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/1/request.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/10/post-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/10/post-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/10/pre-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/10/pre-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/10/request.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/10/request.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/2/post-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/2/post-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/2/pre-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/2/pre-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/2/request.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/2/request.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/3/post-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/3/post-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/3/pre-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/3/pre-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/3/request.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/3/request.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/4/post-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/4/post-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/4/pre-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/4/pre-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/4/request.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/4/request.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/5/post-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/5/post-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/5/pre-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/5/pre-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/5/request.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/5/request.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/6/post-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/6/post-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/6/pre-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/6/pre-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/6/request.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/6/request.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/7/post-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/7/post-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/7/pre-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/7/pre-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/7/request.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/7/request.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/8/post-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/8/post-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/8/pre-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/8/pre-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/8/request.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/8/request.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/9/post-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/9/post-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/9/pre-filter.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/9/pre-filter.xml with 100% similarity]
protocol/netconf-util/src/test/resources/subtree/rpc/9/request.xml [moved from netconf/netconf-util/src/test/resources/subtree/rpc/9/request.xml with 100% similarity]
protocol/pom.xml