BUG-3095 Add EventTime attribute to DOMNotification from netconf
[controller.git] / opendaylight / md-sal / sal-netconf-connector / src / main / java / org / opendaylight / controller / sal / connect / api / RemoteDeviceHandler.java
index 02f45e5bc33a288746954f077d13e32a7ee224b0..07c5fcb620464c62621ba93d6ec882e03edcc3e8 100644 (file)
@@ -7,8 +7,8 @@
  */
 package org.opendaylight.controller.sal.connect.api;
 
+import org.opendaylight.controller.md.sal.dom.api.DOMNotification;
 import org.opendaylight.controller.md.sal.dom.api.DOMRpcService;
-import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
 
 public interface RemoteDeviceHandler<PREF> extends AutoCloseable {
@@ -20,7 +20,7 @@ public interface RemoteDeviceHandler<PREF> extends AutoCloseable {
 
     void onDeviceFailed(Throwable throwable);
 
-    void onNotification(ContainerNode domNotification);
+    void onNotification(DOMNotification domNotification);
 
     void close();
 }