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

io.hyperfoil.tools.horreum.svc.MissingValuesEvent Maven / Gradle / Ivy

There is a newer version: 0.15.3
Show newest version
package io.hyperfoil.tools.horreum.svc;

import java.util.Set;

import io.hyperfoil.tools.horreum.entity.data.DatasetDAO;

public class MissingValuesEvent {
    public DatasetDAO.Info dataset;
    public Set variables;
    public boolean notify;

    public MissingValuesEvent() {
    }

    public MissingValuesEvent(DatasetDAO.Info dataset, Set variables, boolean notify) {
        this.dataset = dataset;
        this.variables = variables;
        this.notify = notify;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy