Removing jackson to mitigate cve-2017-4995
[vfc/nfvo/driver/vnfm/svnfm.git] / nokiav2 / driver / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / nokia / restapi / LcnApi.java
1 /*
2  * Copyright 2016-2017, Nokia Corporation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.restapi;
17
18 import com.nokia.cbam.lcm.v32.model.VnfLifecycleChangeNotification;
19 import javax.servlet.http.HttpServletResponse;
20 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.notification.LifecycleChangeNotificationManager;
21 import org.slf4j.Logger;
22 import org.springframework.beans.factory.annotation.Autowired;
23 import org.springframework.stereotype.Controller;
24 import org.springframework.web.bind.annotation.RequestBody;
25 import org.springframework.web.bind.annotation.RequestMapping;
26 import org.springframework.web.bind.annotation.ResponseStatus;
27
28 import static org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.DriverProperties.BASE_URL;
29 import static org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.DriverProperties.LCN_URL;
30 import static org.slf4j.LoggerFactory.getLogger;
31 import static org.springframework.http.HttpStatus.NO_CONTENT;
32 import static org.springframework.http.MediaType.APPLICATION_JSON_VALUE;
33 import static org.springframework.web.bind.annotation.RequestMethod.GET;
34 import static org.springframework.web.bind.annotation.RequestMethod.POST;
35
36 /**
37  * Responsible for providing the Nokia CBAM REST API for recieving LCNs from CBAM
38  */
39 @Controller
40 @RequestMapping(value = BASE_URL)
41 public class LcnApi {
42     private static Logger logger = getLogger(LcnApi.class);
43     private final LifecycleChangeNotificationManager lcnManager;
44
45     @Autowired
46     LcnApi(LifecycleChangeNotificationManager lcnManager) {
47         this.lcnManager = lcnManager;
48     }
49
50     /**
51      * Provides a probe for CBAM VNFM to test LCN registration
52      *
53      * @param httpResponse the HTTP response
54      */
55     @RequestMapping(value = LCN_URL, method = GET)
56     public void testLcnConnectivity(HttpServletResponse httpResponse) {
57         //used to test connectivity from CBAM to driver
58     }
59
60     /**
61      * Handle the LCN sent by CBAM
62      *
63      * @param lcn the LCN notification
64      */
65     @RequestMapping(value = LCN_URL, method = POST, consumes = APPLICATION_JSON_VALUE)
66     @ResponseStatus(code = NO_CONTENT)
67     public void handleLcn(@RequestBody VnfLifecycleChangeNotification lcn) {
68         logger.info("REST: handle LCN");
69         lcnManager.handleLcn(lcn);
70     }
71 }