7186363d2fe6950380a798b007e3ac1b8bd0668b
[oam/tr069-adapter.git] / netconf-server / src / main / java / org / commscope / tr069adapter / netconf / restapi / NotificationReceiverService.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.restapi;\r
20 \r
21 import org.commscope.tr069adapter.mapper.model.NetConfNotificationDTO;\r
22 import org.commscope.tr069adapter.netconf.notification.NotificationHandler;\r
23 import org.slf4j.Logger;\r
24 import org.slf4j.LoggerFactory;\r
25 import org.springframework.beans.factory.annotation.Autowired;\r
26 import org.springframework.web.bind.annotation.PostMapping;\r
27 import org.springframework.web.bind.annotation.RequestBody;\r
28 import org.springframework.web.bind.annotation.RequestMapping;\r
29 import org.springframework.web.bind.annotation.RestController;\r
30 \r
31 @RestController\r
32 @RequestMapping("/netConfNotificationService")\r
33 public class NotificationReceiverService {\r
34 \r
35   private static final Logger LOG = LoggerFactory.getLogger(NotificationReceiverService.class);\r
36 \r
37   @Autowired\r
38   NotificationHandler handler;\r
39 \r
40   @PostMapping("/notification")\r
41   public void processNotification(@RequestBody NetConfNotificationDTO netConNotifDTO) {\r
42     System.out.println("Received NetConf Notification :" + netConNotifDTO);\r
43     LOG.debug("Received NetConf Notification :" + netConNotifDTO);\r
44     handler.handleNetConfNotification(netConNotifDTO);\r
45     LOG.debug("Processed NetConf Notification for :" + netConNotifDTO);\r
46     System.out.println("Processed NetConf Notification for :" + netConNotifDTO);\r
47   }\r
48 }\r