org.enodeframework.eventing.IDomainEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enode Show documentation
Show all versions of enode Show documentation
The enodeframework core implementation.
package org.enodeframework.eventing;
import org.enodeframework.messaging.IMessage;
public interface IDomainEvent extends IMessage {
TAggregateRootId getAggregateRootId();
void setAggregateRootId(TAggregateRootId aggregateRootId);
String getCommandId();
void setCommandId(String commandId);
String getAggregateRootTypeName();
void setAggregateRootTypeName(String aggregateRootTypeName);
int getVersion();
void setVersion(int version);
int getSequence();
void setSequence(int sequence);
}