SDN-C support&provide network layer tests Using IP
[sdnc/oam.git] / SdncReports / SdncReportsApi / src / main / java / com / onap / sdnc / reports / controller / CertificationController.java
1 /*
2 * ============LICENSE_START=======================================================
3 * ONAP : SDNC-FEATURES
4 * ================================================================================
5 * Copyright 2018 TechMahindra
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 package com.onap.sdnc.reports.controller;
21
22 import org.springframework.beans.factory.annotation.Autowired;
23 import org.springframework.http.MediaType;
24 import org.springframework.web.bind.annotation.RequestBody;
25 import org.springframework.web.bind.annotation.RequestMapping;
26 import org.springframework.web.bind.annotation.RequestMethod;
27 import org.springframework.web.bind.annotation.RestController;
28 import org.springframework.web.servlet.ModelAndView;
29
30 import com.onap.sdnc.reports.model.Request;
31 import com.onap.sdnc.reports.model.Response;
32 import com.onap.sdnc.reports.service.LayerTestService;
33
34
35 @RestController
36 public class CertificationController {
37
38         @Autowired
39         LayerTestService ltService;     
40         
41         @RequestMapping("/")
42         ModelAndView home(ModelAndView modelAndView) {
43
44                 modelAndView.setViewName("index");
45
46                 return modelAndView;
47         }
48         
49         @RequestMapping(value="/runtest",method=RequestMethod.POST, consumes="application/json",produces=MediaType.APPLICATION_JSON_VALUE)
50         public Response findReportByTestName(@RequestBody Request req) {                
51                 
52                 return ltService.networkCertification(req);             
53         }
54 }