
com.intellifylearning.models.BatchIntellifyBase 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.impl.IntellifyBase;
public class BatchIntellifyBase {
private String apiKey;
private List batch;
public BatchIntellifyBase() {
super();
// defensive - make sure we never have a null batch
this.batch = Lists.newArrayList();
}
public BatchIntellifyBase(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