Drop documentation FIXMEs
[netconf.git] / netconf / sal-netconf-connector / src / main / java / org / opendaylight / netconf / sal / connect / api / RemoteDevice.java
index 6cb40237032bae9c9badfa842491f7baf1d5d05c..57628db444eb5997b400506c4e7300aada7a1f63 100644 (file)
@@ -13,12 +13,15 @@ import org.opendaylight.netconf.api.NetconfMessage;
  * Remote device.
  */
 public interface RemoteDevice<PREF, LISTENER extends RemoteDeviceCommunicator> {
-
+    // FIXME: document this node
     void onRemoteSessionUp(PREF remoteSessionCapabilities, LISTENER listener);
 
+    // FIXME: document this node
     void onRemoteSessionDown();
 
+    // FIXME: document this node
     void onRemoteSessionFailed(Throwable throwable);
 
+    // FIXME: document this node
     void onNotification(NetconfMessage notification);
 }