All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.enodeframework.eventing.IDomainEvent Maven / Gradle / Ivy

There is a newer version: 1.1.10
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy