X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=netconf-server%2Fsrc%2Fmain%2Fjava%2Forg%2Fcommscope%2Ftr069adapter%2Fnetconf%2Fnotification%2FNotificationHandler.java;h=71197d0f48494c70b69e71da214bd843144f28ac;hb=refs%2Fchanges%2F34%2F4334%2F1;hp=24192f28fa179315b25ba7fa9f4f714f32351d9c;hpb=a58ada8fd244e69cf2ebe48a251fcdd4d48acec4;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); } }