package it.cnr.isti.energia.util; /** * * @author Antonino Crivello * */ public class Measurement { private Long timestamp; private double value; public Long getTimestamp() { return timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } public double getValue() { return value; } public void setValue(double value) { this.value = value; } }