forked from D-Net/dnet-hadoop
fixed generation entities from claims
This commit is contained in:
parent
3ebf81d2b0
commit
99f88e1cb8
|
@ -137,8 +137,10 @@ public class GenerateEntitiesApplication {
|
||||||
final String type = StringUtils.substringAfter(id, ":");
|
final String type = StringUtils.substringAfter(id, ":");
|
||||||
|
|
||||||
switch (type.toLowerCase()) {
|
switch (type.toLowerCase()) {
|
||||||
|
case "oaf-store-claim":
|
||||||
case "oaf-store-cleaned":
|
case "oaf-store-cleaned":
|
||||||
return new OafToOafMapper(vocs, false).processMdRecord(s);
|
return new OafToOafMapper(vocs, false).processMdRecord(s);
|
||||||
|
case "odf-store-claim":
|
||||||
case "odf-store-cleaned":
|
case "odf-store-cleaned":
|
||||||
return new OdfToOafMapper(vocs, false).processMdRecord(s);
|
return new OdfToOafMapper(vocs, false).processMdRecord(s);
|
||||||
case "oaf-store-intersection":
|
case "oaf-store-intersection":
|
||||||
|
|
Loading…
Reference in New Issue