From 08bab501dc169a09f1b2f6ae8572d7e0aa379c2c Mon Sep 17 00:00:00 2001 From: "michele.artini" Date: Tue, 27 Jul 2021 11:20:45 +0200 Subject: [PATCH] updated the definition of the new fields --- .../eu/dnetlib/dhp/schema/oaf/Datasource.java | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/main/java/eu/dnetlib/dhp/schema/oaf/Datasource.java b/src/main/java/eu/dnetlib/dhp/schema/oaf/Datasource.java index 936e574..0e7606d 100644 --- a/src/main/java/eu/dnetlib/dhp/schema/oaf/Datasource.java +++ b/src/main/java/eu/dnetlib/dhp/schema/oaf/Datasource.java @@ -91,22 +91,22 @@ public class Datasource extends OafEntity implements Serializable { private Journal journal; // New field for EOSC - private List> providedentitytypes; + private List providedentitytypes; // New field for EOSC - private List> providedproducttypes; + private List providedproducttypes; // New field for EOSC - private Field jurisdiction; + private Qualifier jurisdiction; // New field for EOSC - private Field thematic; + private Boolean thematic; // New field for EOSC - private Field knowledgegraph; + private Boolean knowledgegraph; // New field for EOSC - private List> contentpolicies; + private List contentpolicies; public Qualifier getDatasourcetype() { return datasourcetype; @@ -396,51 +396,51 @@ public class Datasource extends OafEntity implements Serializable { this.journal = journal; } - public List> getProvidedentitytypes() { + public List getProvidedentitytypes() { return providedentitytypes; } - public void setProvidedentitytypes(final List> providedentitytypes) { + public void setProvidedentitytypes(final List providedentitytypes) { this.providedentitytypes = providedentitytypes; } - public List> getProvidedproducttypes() { + public List getProvidedproducttypes() { return providedproducttypes; } - public void setProvidedproducttypes(final List> providedproducttypes) { + public void setProvidedproducttypes(final List providedproducttypes) { this.providedproducttypes = providedproducttypes; } - public Field getJurisdiction() { + public Qualifier getJurisdiction() { return jurisdiction; } - public void setJurisdiction(final Field jurisdiction) { + public void setJurisdiction(final Qualifier jurisdiction) { this.jurisdiction = jurisdiction; } - public Field getThematic() { + public Boolean getThematic() { return thematic; } - public void setThematic(final Field thematic) { + public void setThematic(final Boolean thematic) { this.thematic = thematic; } - public Field getKnowledgegraph() { + public Boolean getKnowledgegraph() { return knowledgegraph; } - public void setKnowledgegraph(final Field knowledgegraph) { + public void setKnowledgegraph(final Boolean knowledgegraph) { this.knowledgegraph = knowledgegraph; } - public List> getContentpolicies() { + public List getContentpolicies() { return contentpolicies; } - public void setContentpolicies(final List> contentpolicies) { + public void setContentpolicies(final List contentpolicies) { this.contentpolicies = contentpolicies; }