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

forklift.replay.ReplayESWriterMsg Maven / Gradle / Ivy

There is a newer version: 3.8
Show newest version
package forklift.replay;

import java.util.Map;

public class ReplayESWriterMsg {
    private String id;
    private Map fields;
    private long version;

    public ReplayESWriterMsg() {

    }

    public ReplayESWriterMsg(String id, Map fields, long version) {
        this.id = id;
        this.fields = fields;
        this.version = version;
    }

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public long getVersion() {
        return version;
    }

    public void setVersion(long version) {
        this.version = version;
    }

    public Map getFields() {
        return fields;
    }

    public void setFields(Map fields) {
        this.fields = fields;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy