From 627b57575e4b098c9064552be51acd9ad638f45e Mon Sep 17 00:00:00 2001 From: "miriam.baglioni" Date: Thu, 20 May 2021 11:09:44 +0200 Subject: [PATCH] changed originalId to acronym --- .../schema/dump/oaf/graph/ResearchInitiative.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/graph/ResearchInitiative.java b/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/graph/ResearchInitiative.java index ad4ad88..2594a1f 100644 --- a/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/graph/ResearchInitiative.java +++ b/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/graph/ResearchInitiative.java @@ -7,8 +7,8 @@ import java.io.Serializable; * To represent entity of type RC/RI. It has the following parameters, which are mostly derived by the profile * - private * String id to store the openaire id for the entity. Is has as code 00 and will be created as - * 00|context_____::md5(originalId) private - * String originalId to store the id of the context as provided in the profile + * 00|context_____::md5(acronym) private + * String acronym to store the id of the context as provided in the profile * (i.e. mes) * - private String name to store the name of the context (got from the label attribute in the context * definition) @@ -19,7 +19,7 @@ import java.io.Serializable; */ public class ResearchInitiative implements Serializable { private String id; // openaireId - private String originalId; // context id + private String acronym; // context id private String name; // context name private String type; // context type: research initiative or research community private String description; @@ -57,12 +57,12 @@ public class ResearchInitiative implements Serializable { this.name = label; } - public String getOriginalId() { - return originalId; + public String getAcronym() { + return acronym; } - public void setOriginalId(String originalId) { - this.originalId = originalId; + public void setAcronym(String acronym) { + this.acronym = acronym; } public String getDescription() {