Switch netconf-server to transport-api
[netconf.git] / protocol / netconf-server / src / main / java / org / opendaylight / netconf / server / api / NetconfServerDispatcher.java
index 9153fe946152fe83a6f9aa8707134903b157fd8c..bb1c0ebd4e38f2d04a9763d73eb8e82f642f1d9c 100644 (file)
@@ -11,6 +11,11 @@ import io.netty.channel.ChannelFuture;
 import io.netty.channel.local.LocalAddress;
 import java.net.InetSocketAddress;
 
+/**
+ * Basic interface for Netconf server dispatcher.
+ * @deprecated Due to design change. Use {@link NetconfServerFactory} to instantiate Netconf server.
+ */
+@Deprecated(since = "7.0.0", forRemoval = true)
 public interface NetconfServerDispatcher {
 
     ChannelFuture createServer(InetSocketAddress address);