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 18 additions and 0 deletions
Showing only changes of commit 6b50226f3b - Show all commits

View File

@ -6,6 +6,8 @@ import java.io.Serializable;
public class ProjectSubset implements Serializable {
private String code;
private String topiccode;
private String topicdescription;
public String getCode() {
return code;
@ -14,4 +16,20 @@ public class ProjectSubset implements Serializable {
public void setCode(String code) {
this.code = code;
}
public String getTopiccode() {
return topiccode;
}
public void setTopiccode(String topiccode) {
this.topiccode = topiccode;
}
public String getTopicdescription() {
return topicdescription;
}
public void setTopicdescription(String topicdescription) {
this.topicdescription = topicdescription;
}
}