Development of NETCONF RPCs for tr-069 adapter to
[oam/tr069-adapter.git] / netconf-server / src / main / java / org / commscope / tr069adapter / netconf / notification / NotificationHandler.java
1 /*
2  * ============LICENSE_START========================================================================
3  * ONAP : tr-069-adapter
4  * =================================================================================================
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.
6  * =================================================================================================
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You
9  * may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
14  * either express or implied. See the License for the specific language governing permissions and
15  * limitations under the License.
16  * ===============LICENSE_END=======================================================================
17  */
18
19 package org.commscope.tr069adapter.netconf.notification;
20
21 import org.commscope.tr069adapter.mapper.model.NetConfNotificationDTO;
22 import org.commscope.tr069adapter.netconf.server.utils.NetConfServerConstants;
23 import org.slf4j.Logger;
24 import org.slf4j.LoggerFactory;
25 import org.slf4j.MDC;
26 import org.springframework.beans.factory.annotation.Autowired;
27 import org.springframework.jms.core.JmsTemplate;
28 import org.springframework.stereotype.Component;
29
30 @Component
31 public class NotificationHandler {
32
33   private static final Logger logger = LoggerFactory.getLogger(NotificationHandler.class);
34   private static final String CLIENT_STR = "client";
35
36   @Autowired
37   NetConfSessionUtil netConfSessionUtil;
38
39   @Autowired
40   private JmsTemplate jmsTemplate;
41
42   public void handleNetConfNotification(NetConfNotificationDTO netConNotifDTO) {
43     logger.debug("processing netconf notification {}", netConNotifDTO);
44     try {
45       MDC.put(CLIENT_STR, netConNotifDTO.getDeviceID());
46
47       logger.debug("NetConf notificaiton reviced for {}", netConNotifDTO.getDeviceID());
48       jmsTemplate.convertAndSend(NetConfServerConstants.NETCONF_NOTIFICATION_Q, netConNotifDTO);
49       logger.debug("Successfully posted the notiticaiton to JMS to forward to SDNR");
50     } catch (Exception e) {
51       logger.error("Posting notification failed; Reason: {}", e.getMessage());
52     } finally {
53       MDC.remove(CLIENT_STR);
54     }
55   }
56 }