forked from D-Net/dnet-hadoop
formatting
This commit is contained in:
parent
10d8bbada8
commit
5f4de9a962
|
@ -8,7 +8,6 @@ import java.io.StringReader;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
import eu.dnetlib.dhp.schema.oaf.H2020Programme;
|
|
||||||
import org.apache.spark.SparkConf;
|
import org.apache.spark.SparkConf;
|
||||||
import org.apache.spark.api.java.function.MapFunction;
|
import org.apache.spark.api.java.function.MapFunction;
|
||||||
import org.apache.spark.sql.Encoders;
|
import org.apache.spark.sql.Encoders;
|
||||||
|
@ -27,6 +26,7 @@ import eu.dnetlib.dhp.schema.dump.oaf.graph.*;
|
||||||
import eu.dnetlib.dhp.schema.dump.oaf.graph.Funder;
|
import eu.dnetlib.dhp.schema.dump.oaf.graph.Funder;
|
||||||
import eu.dnetlib.dhp.schema.dump.oaf.graph.Project;
|
import eu.dnetlib.dhp.schema.dump.oaf.graph.Project;
|
||||||
import eu.dnetlib.dhp.schema.oaf.Field;
|
import eu.dnetlib.dhp.schema.oaf.Field;
|
||||||
|
import eu.dnetlib.dhp.schema.oaf.H2020Programme;
|
||||||
import eu.dnetlib.dhp.schema.oaf.Journal;
|
import eu.dnetlib.dhp.schema.oaf.Journal;
|
||||||
import eu.dnetlib.dhp.schema.oaf.OafEntity;
|
import eu.dnetlib.dhp.schema.oaf.OafEntity;
|
||||||
|
|
||||||
|
@ -379,15 +379,20 @@ public class DumpGraphEntities implements Serializable {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
project.setH2020programme(
|
project
|
||||||
Optional.ofNullable(p.getH2020classification())
|
.setH2020programme(
|
||||||
.map(classification -> classification
|
Optional
|
||||||
|
.ofNullable(p.getH2020classification())
|
||||||
|
.map(
|
||||||
|
classification -> classification
|
||||||
.stream()
|
.stream()
|
||||||
.map(c -> Programme.newInstance(c.getH2020Programme().getCode(), c.getH2020Programme().getDescription())).collect(Collectors.toList()))
|
.map(
|
||||||
|
c -> Programme
|
||||||
|
.newInstance(
|
||||||
|
c.getH2020Programme().getCode(), c.getH2020Programme().getDescription()))
|
||||||
|
.collect(Collectors.toList()))
|
||||||
.orElse(new ArrayList<>()));
|
.orElse(new ArrayList<>()));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Optional<List<Field<String>>> ofundTree = Optional
|
Optional<List<Field<String>>> ofundTree = Optional
|
||||||
.ofNullable(p.getFundingtree());
|
.ofNullable(p.getFundingtree());
|
||||||
List<Funder> funList = new ArrayList<>();
|
List<Funder> funList = new ArrayList<>();
|
||||||
|
|
Loading…
Reference in New Issue