-
- All Implemented Interfaces:
-
org.enodeframework.messaging.Message
public interface DomainEventMessage<TAggregateRootId> implements Message
-
-
Method Summary
Modifier and Type Method Description abstract TAggregateRootIdgetAggregateRootId()abstract voidsetAggregateRootId(TAggregateRootId aggregateRootId)abstract StringgetCommandId()abstract voidsetCommandId(String commandId)abstract StringgetAggregateRootTypeName()abstract voidsetAggregateRootTypeName(String aggregateRootTypeName)abstract intgetVersion()abstract voidsetVersion(int version)abstract intgetSequence()abstract voidsetSequence(int sequence)-
-
Method Detail
-
getAggregateRootId
abstract TAggregateRootId getAggregateRootId()
-
setAggregateRootId
abstract void setAggregateRootId(TAggregateRootId aggregateRootId)
-
getCommandId
abstract String getCommandId()
-
setCommandId
abstract void setCommandId(String commandId)
-
getAggregateRootTypeName
abstract String getAggregateRootTypeName()
-
setAggregateRootTypeName
abstract void setAggregateRootTypeName(String aggregateRootTypeName)
-
getVersion
abstract int getVersion()
-
setVersion
abstract void setVersion(int version)
-
getSequence
abstract int getSequence()
-
setSequence
abstract void setSequence(int sequence)
-
-
-
-