e5cfb3f2f5f950edf9627ad2a2c8ca177d0f32cf
[portal/sdk.git] /
1 /*-
2  * ================================================================================
3  * ECOMP Portal SDK
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
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  * ================================================================================
19  */
20 package org.openecomp.portalapp.controller.sample;
21
22 import java.util.HashMap;
23 import java.util.Map;
24
25 import javax.servlet.http.HttpServletRequest;
26 import javax.servlet.http.HttpServletResponse;
27
28 import org.openecomp.portalsdk.core.controller.RestrictedBaseController;
29 import org.openecomp.portalsdk.core.util.SystemProperties;
30 import org.springframework.stereotype.Controller;
31 import org.springframework.web.bind.annotation.RequestMapping;
32 import org.springframework.web.bind.annotation.RequestMethod;
33 import org.springframework.web.bind.annotation.ResponseBody;
34
35
36
37 /**
38  * @author chris zeng
39  *
40  */
41
42 @Controller
43 @RequestMapping("/") 
44 public class CamundaCockpitController extends RestrictedBaseController {                
45         @SuppressWarnings("rawtypes")
46         @RequestMapping(value = {"/get_camunda_cockpit_link" }, method = RequestMethod.GET, produces = "application/json")
47         @ResponseBody
48         public Map getCamundaCockpitLink(HttpServletRequest request,HttpServletResponse response) {
49                 Map<String,String> map = new HashMap<String,String>();
50                 String camundaCockpitUrl = "";
51                 String camundaCockpitlinkDefined = "false";
52                 if (SystemProperties.containsProperty("camunda_cockpit_link")){
53                         camundaCockpitUrl = SystemProperties.getProperty("camunda_cockpit_link");
54                         camundaCockpitlinkDefined = "true";
55                 };
56                 map.put("link_defined", camundaCockpitlinkDefined);
57                 map.put("camunda_cockpit_link", camundaCockpitUrl);                             
58                 return map;             
59         };
60 }