package it.cnr.isti.telecom.integration.util; /** * * @author Giancarlo Riolo * */ public class MessageBean { private long timestamp; private String measuredValue; private String ID; private String SensorType; private String Room; private String MonitoredFeature; public long getTimestamp() { return timestamp; } public void setTimestamp(long timestampdb) { this.timestamp = timestampdb; } public String getMeasuredValue() { return measuredValue; } public void setMeasuredValue(String measuredValue) { this.measuredValue = measuredValue; } public String getID() { return ID; } public void setID(String iD) { ID = iD; } public String getSensorType() { return SensorType; } public void setSensorType(String sensorType) { SensorType = sensorType; } public String getRoom() { return Room; } public void setRoom(String room) { Room = room; } public String getMonitoredFeature() { return MonitoredFeature; } public void setMonitoredFeature(String monitoredFeature) { MonitoredFeature = monitoredFeature; } }