This commit is contained in:
Athou
2013-04-09 11:10:26 +02:00
parent 1f8aa26571
commit 384bafa38e
8 changed files with 130 additions and 21 deletions

View File

@@ -10,6 +10,7 @@ public class Entries implements Serializable {
private String name;
private String message;
private int errorCount;
private long timestamp;
private List<Entry> entries = Lists.newArrayList();
public String getName() {
@@ -44,4 +45,12 @@ public class Entries implements Serializable {
this.errorCount = errorCount;
}
public long getTimestamp() {
return timestamp;
}
public void setTimestamp(long timestamp) {
this.timestamp = timestamp;
}
}