forked from D-Net/dnet-hadoop
to (de)serialize the association from the resultId and the list of autoritative authors with orcid to possibly propagate
This commit is contained in:
parent
ac3ad25b36
commit
243013cea3
|
@ -4,16 +4,16 @@ import java.io.Serializable;
|
|||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class ResultWithOrcid implements Serializable {
|
||||
String id;
|
||||
public class ResultOrcidList implements Serializable {
|
||||
String resultId;
|
||||
List<AutoritativeAuthor> authorList = new ArrayList<>();
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
public String getResultId() {
|
||||
return resultId;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
public void setResultId(String resultId) {
|
||||
this.resultId = resultId;
|
||||
}
|
||||
|
||||
public List<AutoritativeAuthor> getAuthorList() {
|
||||
|
|
Loading…
Reference in New Issue