|
15 | 15 | */
|
16 | 16 | package org.springframework.data.elasticsearch.client.elc;
|
17 | 17 |
|
18 |
| -import static co.elastic.clients.util.ApiTypeHelper.DANGEROUS_disableRequiredPropertiesCheck; |
19 |
| -import static org.springframework.data.elasticsearch.client.elc.TypeUtils.result; |
| 18 | +import static co.elastic.clients.util.ApiTypeHelper.*; |
| 19 | +import static org.springframework.data.elasticsearch.client.elc.TypeUtils.*; |
20 | 20 |
|
21 | 21 | import co.elastic.clients.elasticsearch._types.Result;
|
22 | 22 | import co.elastic.clients.elasticsearch.core.*;
|
23 | 23 | import co.elastic.clients.elasticsearch.core.bulk.BulkResponseItem;
|
24 |
| -import co.elastic.clients.elasticsearch.core.get.GetResult; |
25 | 24 | import co.elastic.clients.elasticsearch.core.search.ResponseBody;
|
26 | 25 | import co.elastic.clients.json.JsonpMapper;
|
27 | 26 | import co.elastic.clients.transport.Version;
|
28 | 27 | import co.elastic.clients.transport.endpoints.BooleanResponse;
|
29 |
| -import org.apache.commons.logging.Log; |
30 |
| -import org.apache.commons.logging.LogFactory; |
31 | 28 | import reactor.core.publisher.Flux;
|
32 | 29 | import reactor.core.publisher.Mono;
|
33 | 30 | import reactor.util.function.Tuple2;
|
|
41 | 38 | import java.util.function.Function;
|
42 | 39 | import java.util.stream.Collectors;
|
43 | 40 |
|
| 41 | +import org.apache.commons.logging.Log; |
| 42 | +import org.apache.commons.logging.LogFactory; |
44 | 43 | import org.reactivestreams.Publisher;
|
45 | 44 | import org.springframework.data.domain.Sort;
|
46 | 45 | import org.springframework.data.elasticsearch.BulkFailureException;
|
47 | 46 | import org.springframework.data.elasticsearch.NoSuchIndexException;
|
48 | 47 | import org.springframework.data.elasticsearch.UncategorizedElasticsearchException;
|
49 | 48 | import org.springframework.data.elasticsearch.client.UnsupportedBackendOperation;
|
50 |
| -import org.springframework.data.elasticsearch.core.*; |
| 49 | +import org.springframework.data.elasticsearch.core.AbstractReactiveElasticsearchTemplate; |
| 50 | +import org.springframework.data.elasticsearch.core.AggregationContainer; |
| 51 | +import org.springframework.data.elasticsearch.core.IndexedObjectInformation; |
| 52 | +import org.springframework.data.elasticsearch.core.MultiGetItem; |
| 53 | +import org.springframework.data.elasticsearch.core.ReactiveIndexOperations; |
51 | 54 | import org.springframework.data.elasticsearch.core.cluster.ReactiveClusterOperations;
|
52 | 55 | import org.springframework.data.elasticsearch.core.convert.ElasticsearchConverter;
|
53 | 56 | import org.springframework.data.elasticsearch.core.document.Document;
|
54 | 57 | import org.springframework.data.elasticsearch.core.document.SearchDocument;
|
55 | 58 | import org.springframework.data.elasticsearch.core.document.SearchDocumentResponse;
|
56 | 59 | import org.springframework.data.elasticsearch.core.mapping.IndexCoordinates;
|
57 |
| -import org.springframework.data.elasticsearch.core.query.*; |
| 60 | +import org.springframework.data.elasticsearch.core.query.BaseQuery; |
| 61 | +import org.springframework.data.elasticsearch.core.query.BaseQueryBuilder; |
| 62 | +import org.springframework.data.elasticsearch.core.query.BulkOptions; |
| 63 | +import org.springframework.data.elasticsearch.core.query.ByQueryResponse; |
| 64 | +import org.springframework.data.elasticsearch.core.query.Query; |
| 65 | +import org.springframework.data.elasticsearch.core.query.SearchTemplateQuery; |
| 66 | +import org.springframework.data.elasticsearch.core.query.UpdateQuery; |
58 | 67 | import org.springframework.data.elasticsearch.core.query.UpdateResponse;
|
59 | 68 | import org.springframework.data.elasticsearch.core.reindex.ReindexRequest;
|
60 | 69 | import org.springframework.data.elasticsearch.core.reindex.ReindexResponse;
|
|
0 commit comments