CalculationRecord.java
01 package trail.injection;
02 
03 import java.sql.Timestamp;
04 
05 public class CalculationRecord {
06   public Timestamp sent;
07   public Timestamp processed;
08   public double result;
09   
10   public CalculationRecord (long sent,
11             long processed, double result) {
12     this.sent = new Timestamp (sent);
13     this.processed = new Timestamp (processed);
14     this.result = result;
15   }
16   
17 }