generalizing inmemory map into any sensor

merge-requests/1/head
Rasika Perera 9 years ago
parent e88019a56c
commit 50e90fa8de

@ -20,11 +20,11 @@ import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement @XmlRootElement
public class TemperatureRecord { public class DeviceRecord {
private double temperature; private double temperature;
private long time; private long time;
public TemperatureRecord(double temperature, long time) { public DeviceRecord(double temperature, long time) {
this.temperature = temperature; this.temperature = temperature;
this.time = time; this.time = time;
} }

@ -0,0 +1,24 @@
package org.wso2.carbon.device.mgt.iot.sample.virtual.firealarm.service.impl.dao;
import javax.xml.bind.annotation.XmlElement;
public class SensorRecord {
private String sensorValue;
private long time;
public SensorRecord(String sensorValue, long time) {
this.sensorValue = sensorValue;
this.time = time;
}
@XmlElement
public String getSensorValue() {
return sensorValue;
}
@XmlElement
public long getTime() {
return time;
}
}
Loading…
Cancel
Save