add reporting config

4.x.x
inoshperera 5 years ago
parent cf6714c7cf
commit 20a9a98eb1

@ -146,5 +146,6 @@ public final class DeviceManagementConstants {
} }
public static final String REPORTING_CONTEXT = "/event"; public static final String REPORTING_CONTEXT = "/event";
public static final String DEVICE_INFO_ENDPOINT = REPORTING_CONTEXT + "/device-info"; public static final String DEVICE_INFO_ENDPOINT = REPORTING_CONTEXT + "/device-info";
public static final String REPORTING_EVENT_HOST = "iot.reporting.event.host";
} }
} }

@ -94,12 +94,17 @@ public class DeviceInformationManagerImpl implements DeviceInformationManager {
device.getEnrolmentInfo().getId()); device.getEnrolmentInfo().getId());
DeviceManagementDAOFactory.commitTransaction(); DeviceManagementDAOFactory.commitTransaction();
DeviceDetailsWrapper deviceDetailsWrapper = new DeviceDetailsWrapper(); String reportingHost = System.getProperty(DeviceManagementConstants.Report
deviceDetailsWrapper.setDevice(device); .REPORTING_EVENT_HOST);
deviceDetailsWrapper.setDeviceInfo(deviceInfo); if (reportingHost != null && !reportingHost.isEmpty()) {
deviceDetailsWrapper.getJSONString(); DeviceDetailsWrapper deviceDetailsWrapper = new DeviceDetailsWrapper();
HttpReportingUtil.invokeApi(deviceDetailsWrapper.getJSONString(), deviceDetailsWrapper.setDevice(device);
"http://localhost:8081" + DeviceManagementConstants.Report.DEVICE_INFO_ENDPOINT); deviceDetailsWrapper.setDeviceInfo(deviceInfo);
deviceDetailsWrapper.getJSONString();
HttpReportingUtil.invokeApi(deviceDetailsWrapper.getJSONString(),
reportingHost + DeviceManagementConstants.Report.DEVICE_INFO_ENDPOINT);
}
//TODO :: This has to be fixed by adding the enrollment ID. //TODO :: This has to be fixed by adding the enrollment ID.
if (DeviceManagerUtil.isPublishDeviceInfoResponseEnabled()) { if (DeviceManagerUtil.isPublishDeviceInfoResponseEnabled()) {

Loading…
Cancel
Save