Skip to content
Snippets Groups Projects
Commit 39a5df50 authored by Neelesh Thakur's avatar Neelesh Thakur
Browse files

Merged PR 1212: fetch nested shape using apache util

fetch nested shape using apache util

Related work items: #1610
parents 715cbc88 75c794d2
No related branches found
No related tags found
1 merge request!6Trusted ibm
......@@ -145,11 +145,11 @@ public class AttributeParsingServiceImpl implements IAttributeParsingService {
}
@Override
public void tryParseGeojson(String recordId, String attributeName, Map<String, Object> storageRecordData, Map<String, Object> dataMap) {
public void tryParseGeojson(String recordId, String attributeName, Object attributeVal, Map<String, Object> dataMap) {
try {
Type type = new TypeToken<Map<String, Object>>() {}.getType();
Map<String, Object> geoJsonMap = new Gson().fromJson(storageRecordData.get(attributeName).toString(), type);
Map<String, Object> geoJsonMap = new Gson().fromJson(attributeVal.toString(), type);
if (geoJsonMap == null || geoJsonMap.isEmpty()) return;
......
......@@ -24,5 +24,5 @@ public interface IAttributeParsingService {
void tryParseGeopoint(String recordId, String attributeName, Map<String, Object> storageRecordData, Map<String, Object> dataMap);
void tryParseGeojson(String recordId, String attributeName, Map<String, Object> storageRecordData, Map<String, Object> dataMap);
void tryParseGeojson(String recordId, String attributeName, Object attributeVal, Map<String, Object> dataMap);
}
......@@ -347,7 +347,7 @@ public class IndexerServiceImpl implements IndexerService {
this.attributeParsingServiceImpl.tryParseGeopoint(recordId, name, storageRecordData, dataMap);
break;
case GEO_SHAPE:
this.attributeParsingServiceImpl.tryParseGeojson(recordId, name, storageRecordData, dataMap);
this.attributeParsingServiceImpl.tryParseGeojson(recordId, name, value, dataMap);
break;
case NESTED:
case OBJECT:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment