View Javadoc

1   package org.dfdaemon.il2.api.event;
2   
3   import org.joda.time.DateTime;
4   
5   import java.io.Serializable;
6   
7   /**
8    * Log line POJO.
9    *
10   * @author aka50
11   */
12  public abstract class Event implements Serializable {
13  
14      private DateTime _date;
15      private static final long serialVersionUID = 5148367133786820835L;
16  
17      public DateTime getDate() {
18          return _date;
19      }
20  
21      public void setDate(DateTime date) {
22          _date = date;
23      }
24  
25      public String toString() {
26          return "Event{" +
27                  "_date=" + _date +
28                  '}';
29      }
30  
31  }