BrBETA_dnet-hadoop/dhp-workflows/dhp-enrichment/src/main/java/eu/dnetlib/dhp/resulttocommunityfromorgani.../ResultCommunityList.java

27 lines
559 B
Java
Raw Normal View History

2020-04-30 11:05:17 +02:00
package eu.dnetlib.dhp.resulttocommunityfromorganization;
import java.io.Serializable;
import java.util.ArrayList;
public class ResultCommunityList implements Serializable {
2020-04-30 11:05:17 +02:00
private String resultId;
private ArrayList<String> communityList;
2020-04-30 11:05:17 +02:00
public String getResultId() {
return resultId;
}
2020-04-30 11:05:17 +02:00
public void setResultId(String resultId) {
this.resultId = resultId;
}
2020-04-30 11:05:17 +02:00
public ArrayList<String> getCommunityList() {
return communityList;
}
2020-04-30 11:05:17 +02:00
public void setCommunityList(ArrayList<String> communityList) {
this.communityList = communityList;
}
}