de.dagere.kopeme.kopemedata.DatacollectorResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kopeme-core Show documentation
Show all versions of kopeme-core Show documentation
KoPeMe performance testing core
package de.dagere.kopeme.kopemedata;
import java.util.LinkedList;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
public class DatacollectorResult {
private final String name;
private List chunks = new LinkedList<>();
private List results = new LinkedList<>();
public DatacollectorResult(@JsonProperty("name") String name) {
this.name = name;
}
public String getName() {
return name;
}
public List getChunks() {
return chunks;
}
public void setChunks(List chunks) {
this.chunks = chunks;
}
public List getResults() {
return results;
}
public void setResults(List results) {
this.results = results;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy