GenerateEntitiesApplication can be configured to hash the id value or not

pull/73/head
Claudio Atzori 3 years ago
parent 349e7246aa
commit 893ac4a77b

@ -0,0 +1,2 @@
package eu.dnetlib.dhp.schema.oaf.utils;public class PidBlacklist {
}

@ -0,0 +1,2 @@
package eu.dnetlib.dhp.schema.oaf.utils;public class PidBlacklistProvider {
}

@ -0,0 +1,2 @@
package eu.dnetlib.dhp.schema.oaf.utils;public class BlackListProviderTest {
}

@ -22,5 +22,11 @@
"paramLongName": "isLookupUrl",
"paramDescription": "the url of the ISLookupService",
"paramRequired": true
},
{
"paramName": "shi",
"paramLongName": "shouldHashId",
"paramDescription": "should ids be hashed?",
"paramRequired": false
}
]

@ -270,6 +270,7 @@
<arg>--sourcePaths</arg><arg>${contentPath}/db_claims,${contentPath}/oaf_claims,${contentPath}/odf_claims,${contentPath}/oaf_records_invisible</arg>
<arg>--targetPath</arg><arg>${workingDir}/entities_claim</arg>
<arg>--isLookupUrl</arg><arg>${isLookupUrl}</arg>
<arg>--shouldHashId</arg><arg>${shouldHashId}</arg>
</spark>
<ok to="GenerateGraph_claims"/>
<error to="Kill"/>
@ -317,6 +318,7 @@
<arg>--sourcePaths</arg><arg>${contentPath}/db_records,${contentPath}/oaf_records,${contentPath}/odf_records</arg>
<arg>--targetPath</arg><arg>${workingDir}/entities</arg>
<arg>--isLookupUrl</arg><arg>${isLookupUrl}</arg>
<arg>--shouldHashId</arg><arg>${shouldHashId}</arg>
</spark>
<ok to="GenerateGraph"/>
<error to="Kill"/>

Loading…
Cancel
Save