@Controller
@RequestMapping("/")
-public class CamundaCockpitController extends RestrictedBaseController {
+public class CamundaCockpitController extends RestrictedBaseController {
+
+ private static final String CAMUNDA_COCKPIT_LINK = "camunda_cockpit_link";
@SuppressWarnings("rawtypes")
@RequestMapping(value = {"/get_camunda_cockpit_link" }, method = RequestMethod.GET, produces = "application/json")
@ResponseBody
public Map getCamundaCockpitLink(HttpServletRequest request,HttpServletResponse response) {
- Map<String,String> map = new HashMap<String,String>();
+ Map<String,String> map = new HashMap<>();
String camundaCockpitUrl = "";
String camundaCockpitlinkDefined = "false";
- if (SystemProperties.containsProperty("camunda_cockpit_link")){
- camundaCockpitUrl = SystemProperties.getProperty("camunda_cockpit_link");
+ if (SystemProperties.containsProperty(CAMUNDA_COCKPIT_LINK)){
+ camundaCockpitUrl = SystemProperties.getProperty(CAMUNDA_COCKPIT_LINK);
camundaCockpitlinkDefined = "true";
};
map.put("link_defined", camundaCockpitlinkDefined);
- map.put("camunda_cockpit_link", camundaCockpitUrl);
+ map.put(CAMUNDA_COCKPIT_LINK, camundaCockpitUrl);
return map;
};
}