BrBETA_dnet-hadoop/dhp-workflows/dhp-propagation/src/main/java/eu/dnetlib/dhp/orcidtoresultfromsemrel/ResultOrcidList.java

27 lines
625 B
Java
Raw Normal View History

2020-04-16 15:53:34 +02:00
package eu.dnetlib.dhp.orcidtoresultfromsemrel;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
public class ResultOrcidList implements Serializable {
String resultId;
2020-04-16 15:53:34 +02:00
List<AutoritativeAuthor> authorList = new ArrayList<>();
public String getResultId() {
return resultId;
2020-04-16 15:53:34 +02:00
}
public void setResultId(String resultId) {
this.resultId = resultId;
2020-04-16 15:53:34 +02:00
}
public List<AutoritativeAuthor> getAuthorList() {
return authorList;
}
public void setAuthorList(List<AutoritativeAuthor> authorList) {
this.authorList = authorList;
}
}