the general entry for the catalogue

This commit is contained in:
Miriam Baglioni 2020-06-22 16:25:01 +02:00
parent 25a7205549
commit c84736fa56
1 changed files with 55 additions and 45 deletions

View File

@ -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<KeyValue> 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<KeyValue> 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<KeyValue> getExtras() {
return extras;
}
public void setNotes(String notes) {
this.notes = notes;
}
public void setExtras(List<KeyValue> extras) {
this.extras = extras;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public List<KeyValue> getExtras() {
return extras;
}
public void setExtras(List<KeyValue> extras) {
this.extras = extras;
}
}