package eu.dnetlib.dhp.schema.oaf; import java.io.Serializable; import java.util.List; public class OtherResearchProduct extends Result implements Serializable { private static final String ORP_RESULTTYPE = "otherresearchproduct"; private List contactperson; private List contactgroup; private List tool; public OtherResearchProduct() { setResulttype(ORP_RESULTTYPE); } public List getContactperson() { return contactperson; } public void setContactperson(List contactperson) { this.contactperson = contactperson; } public List getContactgroup() { return contactgroup; } public void setContactgroup(List contactgroup) { this.contactgroup = contactgroup; } public List getTool() { return tool; } public void setTool(List tool) { this.tool = tool; } }