Adding H2020 Classification, topic code and topic description to H2020 projects #46

Merged
claudio.atzori merged 59 commits from miriam.baglioni/dnet-hadoop:h2020classification into master 2020-10-05 14:14:39 +02:00
1 changed files with 10 additions and 0 deletions
Showing only changes of commit 89612d639c - Show all commits

View File

@ -60,8 +60,18 @@ public class Project extends OafEntity implements Serializable {
private String h2020topiccode; private String h2020topiccode;
private String h2020topicdescription;
private List<H2020Classification> h2020classification; private List<H2020Classification> h2020classification;
public String getH2020topicdescription() {
return h2020topicdescription;
}
public void setH2020topicdescription(String h2020topicdescription) {
this.h2020topicdescription = h2020topicdescription;
}
public String getH2020topiccode() { public String getH2020topiccode() {
return h2020topiccode; return h2020topiccode;
} }