enrichment steps #38

Merged
claudio.atzori merged 334 commits from miriam.baglioni/dnet-hadoop:master into enrichment_wfs 2020-08-11 16:40:26 +02:00
1 changed files with 19 additions and 0 deletions
Showing only changes of commit d323100af0 - Show all commits

View File

@ -1,4 +1,23 @@
package eu.dnetlib.dhp.schema.oaf;
public class Programme {
private String code;
private String description;
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}