From 1bd638d2918c1968a22597253f1478db9d1cf022 Mon Sep 17 00:00:00 2001 From: "miriam.baglioni" Date: Tue, 27 Oct 2020 16:13:36 +0100 Subject: [PATCH] removed h2020classification from dump information. Added back the programme info --- .../dnetlib/dhp/schema/dump/oaf/graph/Project.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/graph/Project.java b/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/graph/Project.java index 054e4d2df..612be9d25 100644 --- a/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/graph/Project.java +++ b/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/graph/Project.java @@ -31,7 +31,7 @@ import java.util.List; * - private List funding to store the list of funder of the project * - private String summary to store the summary of the project * - private Granted granted to store the granted amount - * - private List h2020classification to store the list of H2020 classifications the project is related to + * - private List h2020programme to store the list of programmes the project is related to */ public class Project implements Serializable { @@ -60,7 +60,7 @@ public class Project implements Serializable { private Granted granted; - private List h2020Classifications; + private List h2020programme; public String getId() { return id; @@ -182,11 +182,11 @@ public class Project implements Serializable { this.granted = granted; } - public List getH2020Classifications() { - return h2020Classifications; + public List getH2020programme() { + return h2020programme; } - public void setH2020Classifications(List h2020Classifications) { - this.h2020Classifications = h2020Classifications; + public void setH2020programme(List h2020programme) { + this.h2020programme = h2020programme; } }