From f8f5381221e3043c7f9c2a65aa76b0e63953353c Mon Sep 17 00:00:00 2001 From: Claudio Atzori Date: Tue, 24 Sep 2024 11:14:00 +0200 Subject: [PATCH] Renamed to --- CHANGES.md | 3 ++- pom.xml | 2 +- src/main/java/eu/dnetlib/dhp/schema/oaf/Author.java | 12 ++++++------ 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 695c624..1634645 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,7 +4,8 @@ | **Version** | **Changes** | **Readiness** | |-------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| -| 7.0.0 | [Graph model]
| beta | +| 8.0.0 | [Graph model]
| beta | +| 7.0.0 | [Graph model]
| production | | 6.1.3 | [Graph model]
| production | | 6.1.1 | [Graph model]
| production | | 6.1.0 | [Graph model]
| production | diff --git a/pom.xml b/pom.xml index 42391f8..cf744d3 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ eu.dnetlib.dhp dhp-schemas jar - 7.0.3-SNAPSHOT + 8.0.0-SNAPSHOT diff --git a/src/main/java/eu/dnetlib/dhp/schema/oaf/Author.java b/src/main/java/eu/dnetlib/dhp/schema/oaf/Author.java index f8c0f3c..6ff5ae4 100644 --- a/src/main/java/eu/dnetlib/dhp/schema/oaf/Author.java +++ b/src/main/java/eu/dnetlib/dhp/schema/oaf/Author.java @@ -7,6 +7,7 @@ import java.util.*; public class Author implements Serializable { private static final long serialVersionUID = 1625492739044457437L; + private String fullname; private String name; @@ -18,7 +19,7 @@ public class Author implements Serializable { private List pid; - private List> affiliation; + private List rawAffiliationString; public String getFullname() { return fullname; @@ -60,12 +61,11 @@ public class Author implements Serializable { this.pid = pid; } - public List> getAffiliation() { - return affiliation; + public List getRawAffiliationString() { + return rawAffiliationString; } - public void setAffiliation(List> affiliation) { - this.affiliation = affiliation; + public void setRawAffiliationString(List rawAffiliationString) { + this.rawAffiliationString = rawAffiliationString; } - }