return test(url, "test");
}
// the UI validation should ensure that the /rest part of the returned url is valid.
public static RestResponse<Object> test(String url, String key) {
HttpRestUtils utils = new HttpRestUtils(EclipsePropertiesManager.INSTANCE);
return utils.httpGet(Constants.MARKERS_URL_SEGMENT + "0");
}