Uses of Class
de.cxp.ocs.api.indexer.UpdateIndexService.Result
-
Packages that use UpdateIndexService.Result Package Description de.cxp.ocs.api.indexer de.cxp.ocs.client de.cxp.ocs.controller de.cxp.ocs.elasticsearch de.cxp.ocs.indexer -
-
Uses of UpdateIndexService.Result in de.cxp.ocs.api.indexer
Methods in de.cxp.ocs.api.indexer that return UpdateIndexService.Result Modifier and Type Method Description static UpdateIndexService.ResultUpdateIndexService.Result. valueOf(String name)Returns the enum constant of this type with the specified name.static UpdateIndexService.Result[]UpdateIndexService.Result. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in de.cxp.ocs.api.indexer that return types with arguments of type UpdateIndexService.Result Modifier and Type Method Description Map<String,UpdateIndexService.Result>UpdateIndexService. deleteDocuments(String indexName, List<String> ids)Delete existing document.Map<String,UpdateIndexService.Result>UpdateIndexService. patchDocuments(String indexName, List<Document> docs)Partial update of an existing document.Map<String,UpdateIndexService.Result>UpdateIndexService. putDocuments(String indexName, Boolean replaceExisting, List<Document> docs)Puts a document to the index. -
Uses of UpdateIndexService.Result in de.cxp.ocs.client
Methods in de.cxp.ocs.client that return types with arguments of type UpdateIndexService.Result Modifier and Type Method Description Map<String,UpdateIndexService.Result>ImportClient. deleteDocuments(String indexName, List<String> ids)Map<String,UpdateIndexService.Result>ImportClient. patchDocuments(String indexName, List<Document> docs)Patch one or more documents.Map<String,UpdateIndexService.Result>ImportClient. patchProducts(String indexName, List<Product> products)Similar to patchDocuments, but for the extended sub typeProductthat supports variants.Map<String,UpdateIndexService.Result>ImportClient. putDocuments(String indexName, Boolean replaceExisting, List<Document> docs)Add or overwrite existing documents.Map<String,UpdateIndexService.Result>ImportClient. putProducts(String indexName, Boolean replaceExisting, List<Product> products)Similar to putDocuments, but for the extended sub typeProductthat supports variants. -
Uses of UpdateIndexService.Result in de.cxp.ocs.controller
Methods in de.cxp.ocs.controller that return types with arguments of type UpdateIndexService.Result Modifier and Type Method Description Map<String,UpdateIndexService.Result>UpdateIndexController. deleteDocuments(String indexName, List<String> ids)Map<String,UpdateIndexService.Result>UpdateIndexController. patchDocuments(String indexName, List<Document> documents)Map<String,UpdateIndexService.Result>UpdateIndexController. putDocuments(String indexName, Boolean replaceExisting, List<Document> documents) -
Uses of UpdateIndexService.Result in de.cxp.ocs.elasticsearch
Methods in de.cxp.ocs.elasticsearch that return UpdateIndexService.Result Modifier and Type Method Description protected UpdateIndexService.ResultElasticsearchIndexer. _patch(String index, IndexableItem doc)protected UpdateIndexService.ResultElasticsearchIndexer. _put(String indexName, Boolean replaceExisting, IndexableItem doc)Methods in de.cxp.ocs.elasticsearch that return types with arguments of type UpdateIndexService.Result Modifier and Type Method Description Map<String,UpdateIndexService.Result>ElasticsearchIndexer. deleteDocuments(String indexName, List<String> ids) -
Uses of UpdateIndexService.Result in de.cxp.ocs.indexer
Methods in de.cxp.ocs.indexer that return UpdateIndexService.Result Modifier and Type Method Description protected abstract UpdateIndexService.ResultAbstractIndexer. _patch(String index, IndexableItem indexableItem)protected abstract UpdateIndexService.ResultAbstractIndexer. _put(String indexName, Boolean replaceExisting, IndexableItem indexableItem)UpdateIndexService.ResultAbstractIndexer. patchDocument(String index, Document doc)UpdateIndexService.ResultAbstractIndexer. putDocument(String indexName, Boolean replaceExisting, Document doc)Methods in de.cxp.ocs.indexer that return types with arguments of type UpdateIndexService.Result Modifier and Type Method Description Map<String,UpdateIndexService.Result>AbstractIndexer. patchDocuments(String indexName, List<Document> documents)Map<String,UpdateIndexService.Result>AbstractIndexer. putDocuments(String indexName, Boolean replaceExisting, List<Document> documents)
-