nl.renarj.jasdb.rest.model.IndexCollection Maven / Gradle / Ivy
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