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

de.dagere.kopeme.kopemedata.DatacollectorResult Maven / Gradle / Ivy

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