@Override
public List<EventComment> createSamples() {
List<EventComment> list = new ArrayList<EventComment>();
DateTime now = new DateTime(0);
list.add(new EventComment("id", "eventId", "userId", "comment", false, now));
list.add(new EventComment("id1", "eventId1", "userId", "comment", false, now));
list.add(new EventComment("id", "eventId1", "userId", "comment", false, now));
list.add(new EventComment("id", "eventId", "userId1", "comment", false, now));
list.add(new EventComment("id", "eventId", "userId", "comment1", false, now));
list.add(new EventComment("id", "eventId", "userId", "comment", true, now));
list.add(new EventComment("id", "eventId", "userId", "comment", false, new DateTime(now.getTime() + 1)));
return list;
}