added dummmy fields to AccountDeletedEvent
This commit is contained in:
@@ -20,7 +20,7 @@ public class Account extends ReflectiveMutableCommandProcessingAggregate<Account
|
|||||||
}
|
}
|
||||||
|
|
||||||
public List<Event> process(DeleteAccountCommand cmd) {
|
public List<Event> process(DeleteAccountCommand cmd) {
|
||||||
return EventUtil.events(new AccountDeletedEvent());
|
return EventUtil.events(new AccountDeletedEvent(new Date()));
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<Event> process(DebitAccountCommand cmd) {
|
public List<Event> process(DebitAccountCommand cmd) {
|
||||||
|
|||||||
@@ -5,4 +5,21 @@ import io.eventuate.Event;
|
|||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
public class AccountDeletedEvent implements Event {
|
public class AccountDeletedEvent implements Event {
|
||||||
|
|
||||||
|
private Date timestamp;
|
||||||
|
|
||||||
|
public AccountDeletedEvent() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public AccountDeletedEvent(Date timestamp) {
|
||||||
|
this.timestamp = timestamp;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getTimestamp() {
|
||||||
|
return timestamp;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTimestamp(Date timestamp) {
|
||||||
|
this.timestamp = timestamp;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user