mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Fixes to small bugs in the virtual firealarm
This commit is contained in:
parent
5dc233baed
commit
10c49cfb4c
@ -67,7 +67,7 @@ function submitForm(formId) {
|
||||
} catch (err) {
|
||||
//do nothing
|
||||
}
|
||||
title.html("Response Received!");
|
||||
title.html("Operation Triggered!");
|
||||
statusIcon.attr("class", defaultStatusClasses + " fw-check");
|
||||
description.html(res);
|
||||
$(modalPopupContent).html(content.html());
|
||||
|
||||
@ -39,7 +39,7 @@ public class AgentConstants {
|
||||
|
||||
public static final String AGENT_CONTROL_APP_EP = "/devicemgt/device/%s?id=%s";
|
||||
public static final String DEVICE_DETAILS_PAGE_EP = "/devicemgt/device/%s?id=%s";
|
||||
public static final String DEVICE_ANALYTICS_PAGE_URL = "/devicemgt/analytics?deviceId=%s&deviceType=%s&deviceName=%s";
|
||||
public static final String DEVICE_ANALYTICS_PAGE_URL = "/devicemgt/device/virtual_firealarm/analytics?deviceId=%s&deviceName=%s";
|
||||
/* ---------------------------------------------------------------------------------------
|
||||
HTTP Connection specific information for communicating with IoT-Server
|
||||
--------------------------------------------------------------------------------------- */
|
||||
|
||||
@ -101,7 +101,6 @@ public class AgentManager {
|
||||
|
||||
String analyticsPageContext = String.format(AgentConstants.DEVICE_ANALYTICS_PAGE_URL,
|
||||
agentConfigs.getDeviceId(),
|
||||
AgentConstants.DEVICE_TYPE,
|
||||
agentConfigs.getDeviceName());
|
||||
|
||||
String controlPageContext = String.format(AgentConstants.DEVICE_DETAILS_PAGE_EP,
|
||||
|
||||
@ -38,7 +38,8 @@ public class AgentConstants {
|
||||
|
||||
public static final String AGENT_CONTROL_APP_EP = "/devicemgt/device/%s?id=%s";
|
||||
public static final String DEVICE_DETAILS_PAGE_EP = "/devicemgt/device/%s?id=%s";
|
||||
public static final String DEVICE_ANALYTICS_PAGE_URL = "/devicemgt/analytics?deviceId=%s&deviceType=%s&deviceName=%s";
|
||||
public static final String DEVICE_ANALYTICS_PAGE_URL = "/devicemgt/device/virtual_firealarm/analytics?deviceId=%s&deviceName=%s";
|
||||
|
||||
/* ---------------------------------------------------------------------------------------
|
||||
HTTP Connection specific information for communicating with IoT-Server
|
||||
--------------------------------------------------------------------------------------- */
|
||||
|
||||
@ -89,7 +89,6 @@ public class AgentManager {
|
||||
|
||||
String analyticsPageContext = String.format(AgentConstants.DEVICE_ANALYTICS_PAGE_URL,
|
||||
agentConfigs.getDeviceId(),
|
||||
AgentConstants.DEVICE_TYPE,
|
||||
agentConfigs.getDeviceName());
|
||||
|
||||
String controlPageContext = String.format(AgentConstants.DEVICE_DETAILS_PAGE_EP,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user