diff --git a/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/dump/gcat/CatalogueEntry.java b/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/dump/gcat/CatalogueEntry.java index 7819ed92d8..832a299b56 100644 --- a/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/dump/gcat/CatalogueEntry.java +++ b/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/dump/gcat/CatalogueEntry.java @@ -1,64 +1,74 @@ -package eu.dnetlib.dhp.schema.dump.gcat; -import eu.dnetlib.dhp.schema.dump.oaf.KeyValue; +package eu.dnetlib.dhp.schema.dump.gcat; import java.io.Serializable; import java.util.List; -public class CatologueEntry implements Serializable { +import eu.dnetlib.dhp.schema.dump.oaf.KeyValue; - private String name; //openaire id withouut :: substitute with $$ - private String licence_id; //default "notspecified", - private String title; // title.maintitle - private String notes; // description.value (the first description - private String url; //the url of the resource in the openaire dashboard - private List extras; +public class CatalogueEntry implements Serializable { - public String getName() { - return name; - } + private String name; // openaire id withouut :: substitute with $$ + private String licence_id; // default "notspecified", + private String title; // title.maintitle + private String notes; // description.value (the first description + private String url; // the url of the resource in the openaire dashboard + private String version; // valid for datasets + private List extras; - public void setName(String name) { - this.name = name; - } + public String getVersion() { + return version; + } - public String getLicence_id() { - return licence_id; - } + public void setVersion(String version) { + this.version = version; + } - public void setLicence_id(String licence_id) { - this.licence_id = licence_id; - } + public String getName() { + return name; + } - public String getTitle() { - return title; - } + public void setName(String name) { + this.name = name; + } - public void setTitle(String title) { - this.title = title; - } + public String getLicence_id() { + return licence_id; + } - public String getNotes() { - return notes; - } + public void setLicence_id(String licence_id) { + this.licence_id = licence_id; + } - public void setNotes(String notes) { - this.notes = notes; - } + public String getTitle() { + return title; + } - public String getUrl() { - return url; - } + public void setTitle(String title) { + this.title = title; + } - public void setUrl(String url) { - this.url = url; - } + public String getNotes() { + return notes; + } - public List getExtras() { - return extras; - } + public void setNotes(String notes) { + this.notes = notes; + } - public void setExtras(List extras) { - this.extras = extras; - } + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } + + public List getExtras() { + return extras; + } + + public void setExtras(List extras) { + this.extras = extras; + } }