to (de)serialize the association from the resultId and the list of autoritative authors with orcid to possibly propagate

This commit is contained in:
Miriam Baglioni 2020-04-16 15:57:29 +02:00
parent ac3ad25b36
commit 243013cea3
1 changed files with 6 additions and 6 deletions

View File

@ -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() {