Move NetconfHelloMessage to netconf-api
[netconf.git] / opendaylight / netconf / netconf-api / src / main / java / org / opendaylight / netconf / api / NetconfClientSessionPreferences.java
index 2c9a17abb3e21730ac460748710bd1fc344f8cec..3f63db448020093892d398d66ae266d24f74b04b 100644 (file)
@@ -8,6 +8,8 @@
 
 package org.opendaylight.netconf.api;
 
+import org.opendaylight.netconf.api.messages.NetconfHelloMessage;
+
 /**
  * The only input for the start of a NETCONF session is hello-message.
  */
@@ -15,7 +17,7 @@ public final class NetconfClientSessionPreferences extends NetconfSessionPrefere
 
     private final NetconfMessage startExiMessage;
 
-    public NetconfClientSessionPreferences(final NetconfMessage helloMessage,
+    public NetconfClientSessionPreferences(final NetconfHelloMessage helloMessage,
                                      final NetconfMessage startExiMessage) {
         super(helloMessage);
         this.startExiMessage = startExiMessage;