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

de.dagere.kopeme.kopemedata.TestMethod 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 TestMethod {
   private final String method;

   private List datacollectorResults = new LinkedList<>();

   public TestMethod(@JsonProperty("method") String method) {
      this.method = method;
   }

   public String getMethod() {
      return method;
   }

   public List getDatacollectorResults() {
      return datacollectorResults;
   }

   public void setDatacollectorResults(List datacollectorResults) {
      this.datacollectorResults = datacollectorResults;
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy