From 243013cea3979e61f0a5ad020389b75d6f2b035c Mon Sep 17 00:00:00 2001 From: "miriam.baglioni" Date: Thu, 16 Apr 2020 15:57:29 +0200 Subject: [PATCH] to (de)serialize the association from the resultId and the list of autoritative authors with orcid to possibly propagate --- .../dhp/orcidtoresultfromsemrel/ResultOrcidList.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dhp-workflows/dhp-propagation/src/main/java/eu/dnetlib/dhp/orcidtoresultfromsemrel/ResultOrcidList.java b/dhp-workflows/dhp-propagation/src/main/java/eu/dnetlib/dhp/orcidtoresultfromsemrel/ResultOrcidList.java index e90795b1d..9e2bc6e31 100644 --- a/dhp-workflows/dhp-propagation/src/main/java/eu/dnetlib/dhp/orcidtoresultfromsemrel/ResultOrcidList.java +++ b/dhp-workflows/dhp-propagation/src/main/java/eu/dnetlib/dhp/orcidtoresultfromsemrel/ResultOrcidList.java @@ -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 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 getAuthorList() {