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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy