X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=netconf-server%2Fsrc%2Fmain%2Fjava%2Forg%2Fcommscope%2Ftr069adapter%2Fnetconf%2Fnotification%2FNotificationHandler.java;fp=netconf-server%2Fsrc%2Fmain%2Fjava%2Forg%2Fcommscope%2Ftr069adapter%2Fnetconf%2Fnotification%2FNotificationHandler.java;h=71197d0f48494c70b69e71da214bd843144f28ac;hb=641a6c47b4ee74412e9386b3c95693adda3cafc9;hp=24192f28fa179315b25ba7fa9f4f714f32351d9c;hpb=8c7432b8380a355e89df05f070e7d88e599912fd;p=oam%2Ftr069-adapter.git diff --git a/netconf-server/src/main/java/org/commscope/tr069adapter/netconf/notification/NotificationHandler.java b/netconf-server/src/main/java/org/commscope/tr069adapter/netconf/notification/NotificationHandler.java index 24192f2..71197d0 100644 --- a/netconf-server/src/main/java/org/commscope/tr069adapter/netconf/notification/NotificationHandler.java +++ b/netconf-server/src/main/java/org/commscope/tr069adapter/netconf/notification/NotificationHandler.java @@ -18,7 +18,7 @@ package org.commscope.tr069adapter.netconf.notification; -import org.commscope.tr069adapter.acs.common.DeviceInform; +import org.commscope.tr069adapter.mapper.model.NetConfNotificationDTO; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; @@ -32,9 +32,9 @@ public class NotificationHandler { @Autowired NetConfSessionUtil netConfSessionUtil; - public void handleNetConfNotification(DeviceInform notification) { - LOG.debug("processing netconf notification {}", notification); - netConfSessionUtil.sendNetConfNotification(notification); + public void handleNetConfNotification(NetConfNotificationDTO netConNotifDTO) { + LOG.debug("processing netconf notification " + netConNotifDTO); + netConfSessionUtil.sendNetConfNotification(netConNotifDTO); } }