forked from D-Net/dnet-hadoop
Support class to serialize/deserialize the association project, set of linked results
This commit is contained in:
parent
c0bebb7c35
commit
e0038bde5b
|
@ -1,4 +1,25 @@
|
|||
package eu.dnetlib.dhp.projecttoresult;
|
||||
|
||||
public class ProjectResultSet {
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class ProjectResultSet implements Serializable {
|
||||
private String projectId;
|
||||
private ArrayList<String> resultSet;
|
||||
|
||||
public String getProjectId() {
|
||||
return projectId;
|
||||
}
|
||||
|
||||
public void setProjectId(String projectId) {
|
||||
this.projectId = projectId;
|
||||
}
|
||||
|
||||
public ArrayList<String> getResultSet() {
|
||||
return resultSet;
|
||||
}
|
||||
|
||||
public void setResultSet(ArrayList<String> resultSet) {
|
||||
this.resultSet = resultSet;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue