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

nl.renarj.jasdb.rest.model.IndexCollection Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package nl.renarj.jasdb.rest.model;

import java.util.List;

/**
 * @author: renarj
 * Date: 3-6-12
 * Time: 16:43
 */
public class IndexCollection implements RestEntity {
    private List indexEntryList;

    public IndexCollection() {

    }

    public IndexCollection(List indexEntryList) {
        this.indexEntryList = indexEntryList;
    }

    public List getIndexEntryList() {
        return indexEntryList;
    }

    public void setIndexEntryList(List indexEntryList) {
        this.indexEntryList = indexEntryList;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy