Merge "VES Heartbeat and Software Management Feature"
[oam/tr069-adapter.git] / netconf-server / src / main / java / org / commscope / tr069adapter / netconf / notification / NotificationHandler.java
index 24192f2..71197d0 100644 (file)
@@ -18,7 +18,7 @@
 \r
 package org.commscope.tr069adapter.netconf.notification;\r
 \r
-import org.commscope.tr069adapter.acs.common.DeviceInform;\r
+import org.commscope.tr069adapter.mapper.model.NetConfNotificationDTO;\r
 import org.slf4j.Logger;\r
 import org.slf4j.LoggerFactory;\r
 import org.springframework.beans.factory.annotation.Autowired;\r
@@ -32,9 +32,9 @@ public class NotificationHandler {
   @Autowired\r
   NetConfSessionUtil netConfSessionUtil;\r
 \r
-  public void handleNetConfNotification(DeviceInform notification) {\r
-    LOG.debug("processing netconf notification {}", notification);\r
-    netConfSessionUtil.sendNetConfNotification(notification);\r
+  public void handleNetConfNotification(NetConfNotificationDTO netConNotifDTO) {\r
+    LOG.debug("processing netconf notification " + netConNotifDTO);\r
+    netConfSessionUtil.sendNetConfNotification(netConNotifDTO);\r
   }\r
 \r
 }\r