Merge "Enhancement for query"
[so.git] / vnfm-simulator / vnf-service / src / main / java / org / onap / svnfm / simulator / controller / SvnfmController.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.svnfm.simulator.controller;
22
23 import javax.ws.rs.core.MediaType;
24
25 import org.onap.svnfm.simulator.services.SvnfmService;
26 import org.onap.vnfm.v1.model.CreateVnfRequest;
27 import org.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.http.HttpHeaders;
31 import org.springframework.http.HttpStatus;
32 import org.springframework.http.ResponseEntity;
33 import org.springframework.web.bind.annotation.RequestBody;
34 import org.springframework.web.bind.annotation.RequestMapping;
35 import org.springframework.web.bind.annotation.RequestMethod;
36 import org.springframework.web.bind.annotation.RestController;
37
38 /**
39  * This class contains the VNF life cycle management operations
40  * 
41  * @author ronan.kenny@est.tech
42  *
43  */
44
45 /**
46  * TO DO
47  *
48  * Implement Exception handling Implement VNFM adaptor call Identify the Create
49  * VNF response Test itwith the VNFM Adaptor
50  */
51
52 @RestController
53 @RequestMapping("/svnfm")
54
55 public class SvnfmController {
56
57         @Autowired
58         private SvnfmService svnfmService;
59
60         private static final Logger LOGGER = LoggerFactory.getLogger(SvnfmController.class);
61
62         @RequestMapping(method = RequestMethod.POST, value = "/vnf_instances")
63         public ResponseEntity<Object> createVNFInstance(@RequestBody final CreateVnfRequest createVNFRequest) {
64                 LOGGER.info("Start createVNFInstance");
65                 HttpHeaders headers = new HttpHeaders();
66                 headers.add("Content-Type", MediaType.APPLICATION_JSON);
67                 return new ResponseEntity<>(svnfmService.createVNF(), headers, HttpStatus.CREATED);
68         }
69 }