package eu.dnetlib.dhp.schema.scholexplorer; import java.util.List; import eu.dnetlib.dhp.schema.oaf.KeyValue; import eu.dnetlib.dhp.schema.oaf.Relation; public class DLIRelation extends Relation { private String dateOfCollection; private List collectedFrom; public List getCollectedFrom() { return collectedFrom; } public void setCollectedFrom(List collectedFrom) { this.collectedFrom = collectedFrom; } public String getDateOfCollection() { return dateOfCollection; } public void setDateOfCollection(String dateOfCollection) { this.dateOfCollection = dateOfCollection; } }