View Javadoc
1 package org.smartcomps.twister.engine.priv.core.dynamic.impl; 2 3 import org.smartcomps.twister.engine.priv.core.dynamic.ExecutionEvent; 4 5 import java.util.Date; 6 7 /*** 8 * Persistent implementation of the ExecutionEvent interface. 9 * @see org.smartcomps.twister.engine.priv.core.dynamic.ExecutionEvent 10 */ 11 public class ExecutionEventImpl implements ExecutionEvent { 12 13 private Long id; 14 private int eventType; 15 private Date eventDate; 16 private String comments; 17 18 public Long getId() { 19 return id; 20 } 21 22 public void setId(Long id) { 23 this.id = id; 24 } 25 26 public int getEventType() { 27 return eventType; 28 } 29 30 public void setEventType(int eventType) { 31 this.eventType = eventType; 32 } 33 34 public Date getEventDate() { 35 return eventDate; 36 } 37 38 public void setEventDate(Date eventDate) { 39 this.eventDate = eventDate; 40 } 41 42 public String getComments() { 43 return comments; 44 } 45 46 public void setComments(String comments) { 47 this.comments = comments; 48 } 49 }

This page was automatically generated by Maven