Refactor SOL003 Adapter to organize its modules
[so.git] / adapters / etsi-sol002-adapter / src / main / java / org / onap / so / adapters / vevnfm / controller / NotificationController.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SO
4  * ================================================================================
5  * Copyright (C) 2019 Samsung. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.adapters.vevnfm.controller;
22
23 import org.onap.so.adapters.etsisol003adapter.lcm.lcn.model.VnfLcmOperationOccurrenceNotification;
24 import org.onap.so.adapters.vevnfm.service.DmaapConditionalSender;
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27 import org.springframework.http.ResponseEntity;
28 import org.springframework.web.bind.annotation.PostMapping;
29 import org.springframework.web.bind.annotation.RequestBody;
30 import org.springframework.web.bind.annotation.RestController;
31
32 @RestController
33 public class NotificationController {
34
35     private static final Logger logger = LoggerFactory.getLogger(NotificationController.class);
36
37     private final DmaapConditionalSender dmaapConditionalSender;
38
39     public NotificationController(final DmaapConditionalSender dmaapConditionalSender) {
40         this.dmaapConditionalSender = dmaapConditionalSender;
41     }
42
43     @PostMapping("${vnfm.notification}")
44     public ResponseEntity receiveNotification(@RequestBody final VnfLcmOperationOccurrenceNotification notification) {
45         logger.info("Notification received {}", notification);
46
47         try {
48             dmaapConditionalSender.send(notification);
49         } catch (NullPointerException e) {
50             logger.warn("NullPointerException caught while sending to DMaaP", e);
51         }
52
53         return ResponseEntity.ok().build();
54     }
55 }