
com.intellifylearning.models.Batch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of intellisense Show documentation
Show all versions of intellisense Show documentation
IntelliSense Sensor API for Java
package com.intellifylearning.models;
import java.util.List;
import com.google.common.collect.Lists;
import com.intellify.api.caliper.CaliperEntity;
public class Batch {
private String apiKey;
private List batch;
public Batch() {
super();
// defensive - make sure we never have a null batch
this.batch = Lists.newArrayList();
}
public Batch(String apiKey, List batch) {
this.apiKey = apiKey;
this.batch = batch;
}
public String getapiKey() {
return apiKey;
}
public void setapiKey(String apiKey) {
this.apiKey = apiKey;
}
public List getBatch() {
return batch;
}
public void setBatch(List batch) {
this.batch = batch;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy