org.enodeframework.queue.domainevent.DomainEventHandledMessage 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.queue.domainevent;
import java.io.Serializable;
/**
* @author [email protected]
*/
public class DomainEventHandledMessage implements Serializable {
private String commandId;
private String aggregateRootId;
private String commandResult;
public String getCommandId() {
return commandId;
}
public void setCommandId(String commandId) {
this.commandId = commandId;
}
public String getAggregateRootId() {
return aggregateRootId;
}
public void setAggregateRootId(String aggregateRootId) {
this.aggregateRootId = aggregateRootId;
}
public String getCommandResult() {
return commandResult;
}
public void setCommandResult(String commandResult) {
this.commandResult = commandResult;
}
}