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

com.intellifylearning.models.Batch Maven / Gradle / Ivy

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