package eu.dnetlib.dhp.schema.dump.oaf.community; import java.util.List; import eu.dnetlib.dhp.schema.dump.oaf.KeyValue; import eu.dnetlib.dhp.schema.dump.oaf.Result; /** * extends eu.dnetlib.dhp.schema.dump.oaf.Result with the following parameters: - projects of type * List to store the list of projects related to the result. The * information is added after the result is mapped to the external model - context of type * List to store information about the RC RI related to the result. * For each context in the result represented in the internal model one context in the external model is produced - * collectedfrom of type List to store information about the sources from which * the record has been collected. For each collectedfrom in the result represented in the internal model one * collectedfrom in the external model is produced - instance of type * List to store all the instances associated to the result. * It corresponds to the same parameter in the result represented in the internal model */ public class CommunityResult extends Result { private List projects; private List context; protected List collectedfrom; private List instance; public List getInstance() { return instance; } public void setInstance(List instance) { this.instance = instance; } public List getCollectedfrom() { return collectedfrom; } public void setCollectedfrom(List collectedfrom) { this.collectedfrom = collectedfrom; } public List getProjects() { return projects; } public void setProjects(List projects) { this.projects = projects; } public List getContext() { return context; } public void setContext(List context) { this.context = context; } }