dump #50

Merged
claudio.atzori merged 98 commits from miriam.baglioni/dnet-hadoop:dump into master 2020-11-04 18:07:01 +01:00
1 changed files with 20 additions and 1 deletions
Showing only changes of commit 4584cf6334 - Show all commits

View File

@ -1,4 +1,23 @@
package eu.dnetlib.dhp.schema.dump.oaf.graph;
public class GraphResult {
import eu.dnetlib.dhp.schema.dump.oaf.Instance;
import eu.dnetlib.dhp.schema.dump.oaf.Result;
import java.util.List;
/**
* It extends the eu.dnetlib.dhp.schema.dump.oaf.Result with
* - instance of type List<eu.dnetlib.dhp.schema.dump.oaf.Instance> to store all the instances associated
* to the result. It corresponds to the same parameter in the result represented in the internal model
*/
public class GraphResult extends Result {
private List<Instance> instance;
public List<Instance> getInstance() {
return instance;
}
public void setInstance(List<Instance> instance) {
this.instance = instance;
}
}