2 * ================================================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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 * ================================================================================
20 package org.openecomp.portalapp.controller.sample;
22 import java.util.HashMap;
25 import javax.servlet.http.HttpServletRequest;
26 import javax.servlet.http.HttpServletResponse;
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;
44 public class CamundaCockpitController extends RestrictedBaseController {
45 @SuppressWarnings("rawtypes")
46 @RequestMapping(value = {"/get_camunda_cockpit_link" }, method = RequestMethod.GET, produces = "application/json")
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";
56 map.put("link_defined", camundaCockpitlinkDefined);
57 map.put("camunda_cockpit_link", camundaCockpitUrl);