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.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class ResultWithOrcid implements Serializable {
|
public class ResultOrcidList implements Serializable {
|
||||||
String id;
|
String resultId;
|
||||||
List<AutoritativeAuthor> authorList = new ArrayList<>();
|
List<AutoritativeAuthor> authorList = new ArrayList<>();
|
||||||
|
|
||||||
public String getId() {
|
public String getResultId() {
|
||||||
return id;
|
return resultId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(String id) {
|
public void setResultId(String resultId) {
|
||||||
this.id = id;
|
this.resultId = resultId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<AutoritativeAuthor> getAuthorList() {
|
public List<AutoritativeAuthor> getAuthorList() {
|
||||||
|
|
Loading…
Reference in New Issue