added conversion of ExtraInfo
This commit is contained in:
parent
5f339a2c24
commit
6c32d418ac
|
@ -18,39 +18,44 @@ public class ExtraInfo implements Serializable {
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setName(String name) {
|
public ExtraInfo setName(String name) {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getTypology() {
|
public String getTypology() {
|
||||||
return typology;
|
return typology;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTypology(String typology) {
|
public ExtraInfo setTypology(String typology) {
|
||||||
this.typology = typology;
|
this.typology = typology;
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getProvenance() {
|
public String getProvenance() {
|
||||||
return provenance;
|
return provenance;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setProvenance(String provenance) {
|
public ExtraInfo setProvenance(String provenance) {
|
||||||
this.provenance = provenance;
|
this.provenance = provenance;
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getTrust() {
|
public String getTrust() {
|
||||||
return trust;
|
return trust;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTrust(String trust) {
|
public ExtraInfo setTrust(String trust) {
|
||||||
this.trust = trust;
|
this.trust = trust;
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getValue() {
|
public String getValue() {
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setValue(String value) {
|
public ExtraInfo setValue(String value) {
|
||||||
this.value = value;
|
this.value = value;
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -67,22 +67,37 @@ public class ProtoConverter implements Serializable {
|
||||||
private static Datasource convertDataSource(OafProtos.Oaf oaf) {
|
private static Datasource convertDataSource(OafProtos.Oaf oaf) {
|
||||||
final Datasource result = new Datasource();
|
final Datasource result = new Datasource();
|
||||||
|
|
||||||
//setting oaf field
|
|
||||||
//TODO waiting claudio for this method
|
//Set Oaf Fields
|
||||||
//result.setDataInfo(DataInfo.fromOaf(oaf.getDataInfo()));
|
result.setDataInfo(ProtoUtils.mapDataInfo(oaf.getDataInfo()));
|
||||||
|
|
||||||
result.setLastupdatetimestamp(oaf.getLastupdatetimestamp());
|
result.setLastupdatetimestamp(oaf.getLastupdatetimestamp());
|
||||||
|
|
||||||
//setting Entity fields
|
//setting Entity fields
|
||||||
result.setId(oaf.getEntity().getId());
|
final OafProtos.OafEntity entity = oaf.getEntity();
|
||||||
result.setOriginalId(oaf.getEntity().getOriginalIdList());
|
|
||||||
|
|
||||||
//TODO waiting claudio for this method
|
result.setId(entity.getId());
|
||||||
result.setCollectedfrom(oaf.getEntity().getCollectedfromList()
|
|
||||||
|
result.setOriginalId(entity.getOriginalIdList());
|
||||||
|
|
||||||
|
result.setCollectedfrom(entity.getCollectedfromList()
|
||||||
.stream()
|
.stream()
|
||||||
.map(s->new KeyValue())
|
.map(ProtoUtils::mapKV)
|
||||||
.collect(Collectors.toList()));
|
.collect(Collectors.toList()));
|
||||||
|
|
||||||
|
result.setPid(entity.getPidList()
|
||||||
|
.stream()
|
||||||
|
.map(ProtoUtils::mapStructuredProperty)
|
||||||
|
.collect(Collectors.toList()));
|
||||||
|
|
||||||
|
result.setDateofcollection(entity.getDateofcollection());
|
||||||
|
|
||||||
|
result.setDateoftransformation(entity.getDateoftransformation());
|
||||||
|
|
||||||
|
result.setExtraInfo(entity.getExtraInfoList()
|
||||||
|
.stream()
|
||||||
|
.map(ProtoUtils::mapExtraInfo)
|
||||||
|
.collect(Collectors.toList()));
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,6 +45,15 @@ public class ProtoUtils {
|
||||||
.setDataInfo(sp.hasDataInfo() ? mapDataInfo(sp.getDataInfo()) : null);
|
.setDataInfo(sp.hasDataInfo() ? mapDataInfo(sp.getDataInfo()) : null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static ExtraInfo mapExtraInfo(FieldTypeProtos.ExtraInfo extraInfo) {
|
||||||
|
return new ExtraInfo()
|
||||||
|
.setName(extraInfo.getName())
|
||||||
|
.setTypology(extraInfo.getTypology())
|
||||||
|
.setProvenance(extraInfo.getProvenance())
|
||||||
|
.setTrust(extraInfo.getTrust())
|
||||||
|
.setValue(extraInfo.getValue());
|
||||||
|
}
|
||||||
|
|
||||||
public static Field<String> mapStringField(FieldTypeProtos.StringField s) {
|
public static Field<String> mapStringField(FieldTypeProtos.StringField s) {
|
||||||
return new Field<String>()
|
return new Field<String>()
|
||||||
.setValue(s.getValue())
|
.setValue(s.getValue())
|
||||||
|
|
|
@ -1 +1,73 @@
|
||||||
{"kind": "entity","entity": {"type": "datasource","datasource": {"metadata": {"officialname": {"value": "CRIS UNS (Current Research Information System University of Novi Sad)"},"englishname": {"value": "CRIS UNS (Current Research Information System University of Novi Sad)"},"websiteurl": {"value": "https://cris.uns.ac.rs/"},"accessinfopackage": [{"value": "https://cris.uns.ac.rs/OAIHandlerOpenAIRECRIS"}],"namespaceprefix": {"value": "CrisUnsNoviS"},"datasourcetype": {"classid": "crissystem","classname": "CRIS System","schemeid": "dnet:datasource_typologies","schemename": "dnet:datasource_typologies"},"openairecompatibility": {"classid": "openaire-cris_1.1","classname": "OpenAIRE CRIS v1.1","schemeid": "dnet:datasourceCompatibilityLevel","schemename": "dnet:datasourceCompatibilityLevel"},"latitude": {"value": "0.0"},"longitude": {"value": "0.0"},"journal": {"issnPrinted": "","issnOnline": "","issnLinking": ""}}},"originalId": ["CRIS_UNS____::openaire"],"collectedfrom": [{"key": "","value": ""}],"dateofcollection": "2019-04-04","id": "10|CRIS_UNS____::f66f1bd369679b5b077dcdf006089556","dateoftransformation": ""},"dataInfo": {"inferred": false,"deletedbyinference": false,"trust": "0.9","provenanceaction": {"classid": "sysimport:crosswalk:entityregistry","classname": "sysimport:crosswalk:entityregistry","schemeid": "dnet:provenance_actions","schemename": "dnet:provenance_actions"}}}
|
{
|
||||||
|
"kind": "entity",
|
||||||
|
"entity": {
|
||||||
|
"type": "datasource",
|
||||||
|
"datasource": {
|
||||||
|
"metadata": {
|
||||||
|
"officialname": {
|
||||||
|
"value": "CRIS UNS (Current Research Information System University of Novi Sad)"
|
||||||
|
},
|
||||||
|
"englishname": {
|
||||||
|
"value": "CRIS UNS (Current Research Information System University of Novi Sad)"
|
||||||
|
},
|
||||||
|
"websiteurl": {
|
||||||
|
"value": "https://cris.uns.ac.rs/"
|
||||||
|
},
|
||||||
|
"accessinfopackage": [
|
||||||
|
{
|
||||||
|
"value": "https://cris.uns.ac.rs/OAIHandlerOpenAIRECRIS"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"namespaceprefix": {
|
||||||
|
"value": "CrisUnsNoviS"
|
||||||
|
},
|
||||||
|
"datasourcetype": {
|
||||||
|
"classid": "crissystem",
|
||||||
|
"classname": "CRIS System",
|
||||||
|
"schemeid": "dnet:datasource_typologies",
|
||||||
|
"schemename": "dnet:datasource_typologies"
|
||||||
|
},
|
||||||
|
"openairecompatibility": {
|
||||||
|
"classid": "openaire-cris_1.1",
|
||||||
|
"classname": "OpenAIRE CRIS v1.1",
|
||||||
|
"schemeid": "dnet:datasourceCompatibilityLevel",
|
||||||
|
"schemename": "dnet:datasourceCompatibilityLevel"
|
||||||
|
},
|
||||||
|
"latitude": {
|
||||||
|
"value": "0.0"
|
||||||
|
},
|
||||||
|
"longitude": {
|
||||||
|
"value": "0.0"
|
||||||
|
},
|
||||||
|
"journal": {
|
||||||
|
"issnPrinted": "",
|
||||||
|
"issnOnline": "",
|
||||||
|
"issnLinking": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"originalId": [
|
||||||
|
"CRIS_UNS____::openaire"
|
||||||
|
],
|
||||||
|
"collectedfrom": [
|
||||||
|
{
|
||||||
|
"key": "",
|
||||||
|
"value": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"dateofcollection": "2019-04-04",
|
||||||
|
"id": "10|CRIS_UNS____::f66f1bd369679b5b077dcdf006089556",
|
||||||
|
"dateoftransformation": ""
|
||||||
|
},
|
||||||
|
"dataInfo": {
|
||||||
|
"inferred": false,
|
||||||
|
"deletedbyinference": false,
|
||||||
|
"trust": "0.9",
|
||||||
|
"provenanceaction": {
|
||||||
|
"classid": "sysimport:crosswalk:entityregistry",
|
||||||
|
"classname": "sysimport:crosswalk:entityregistry",
|
||||||
|
"schemeid": "dnet:provenance_actions",
|
||||||
|
"schemename": "dnet:provenance_actions"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue