Added UniversalVesAdapter in the Mapper
[dcaegen2/services/mapper.git] / UniversalVesAdapter / src / main / java / org / onap / universalvesadapter / controller / VesController.java
1 /*
2 * ============LICENSE_START=======================================================
3 * ONAP : DCAE
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 org.onap.universalvesadapter.controller;
21
22 import org.onap.universalvesadapter.service.VesService;
23 import org.slf4j.Logger;
24 import org.slf4j.LoggerFactory;
25 import org.springframework.beans.factory.annotation.Autowired;
26 import org.springframework.web.bind.annotation.RequestMapping;
27 import org.springframework.web.bind.annotation.RestController;
28
29
30 /**
31  * This controller will be starting point for this micro service. On triggering, it will listen to Dmaap topic for events.
32  * 
33  * @author kmalbari
34  */
35 @RestController
36 public class VesController {
37
38         private final Logger LOGGER = LoggerFactory.getLogger(this.getClass());
39         
40     @Autowired
41     private VesService vesService;
42     
43     /**
44      * @return message that application is started
45      */
46     @RequestMapping("/start")
47     public String start() {
48         
49         LOGGER.debug("UniversalVesAdapter Application starting...");
50         vesService.start();
51         return "Application started";
52     }
53     
54     /**
55      * @return message that application stop process is triggered
56      */
57     @RequestMapping("/stop")
58     public String stop() {
59         
60         vesService.stop();
61         LOGGER.debug("UniversalVesAdapter Application is stopping...");
62         return "Application will be stopped soon";
63     }    
64 }