Toggle navigation
Home
org.graylog2.indexer.fieldtypes.FieldTypeDTO to org.graylog.plugins.enterprise.search.rest.MappedFieldTypeDTO
No. of Instances - 2
No. of Commits - 1
No. of Projects - {'graylog2-server'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Wrap or Un-wrap
mergeCompoundFieldTypes
to
mergeCompoundFieldTypes
Add or Remove Method invocation
request.streams().stream().map(streamId -> { try { return streamService.load(streamId); } catch ( NotFoundException e) { throw new RuntimeException(e); } } ).filter(Objects::nonNull).map(indexSet -> indexSet.getIndexSet().getConfig().id()).flatMap(indexSetId -> this.indexFieldTypesService.findForIndexSet(indexSetId).stream()).map(IndexFieldTypesDTO::fields).flatMap(Collection::stream)
to
request.streams().stream().map(streamId -> { try { return streamService.load(streamId); } catch ( NotFoundException e) { throw new RuntimeException(e); } } ).filter(Objects::nonNull).map(indexSet -> indexSet.getIndexSet().getConfig().id()).flatMap(indexSetId -> this.indexFieldTypesService.findForIndexSet(indexSetId).stream()).map(IndexFieldTypesDTO::fields).flatMap(Collection::stream).map(this::mapPhysicalFieldType)