org.enodeframework.eventing.AggregateEventAppendResult 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 com.google.common.collect.Lists;
import java.util.List;
public class AggregateEventAppendResult {
private EventAppendStatus eventAppendStatus;
private List duplicateCommandIds = Lists.newArrayList();
public EventAppendStatus getEventAppendStatus() {
return eventAppendStatus;
}
public void setEventAppendStatus(EventAppendStatus eventAppendStatus) {
this.eventAppendStatus = eventAppendStatus;
}
public List getDuplicateCommandIds() {
return duplicateCommandIds;
}
public void setDuplicateCommandIds(List duplicateCommandIds) {
this.duplicateCommandIds = duplicateCommandIds;
}
}