|
13 | 13 | * See the License for the specific language governing permissions and
|
14 | 14 | * limitations under the License.
|
15 | 15 | */
|
16 |
| -package org.springframework.data.elasticsearch.core; |
| 16 | +package org.springframework.data.elasticsearch.backend.elasticsearch7; |
17 | 17 |
|
18 | 18 | import reactor.core.publisher.Flux;
|
19 | 19 | import reactor.core.publisher.Mono;
|
|
56 | 56 | import org.springframework.data.elasticsearch.BulkFailureException;
|
57 | 57 | import org.springframework.data.elasticsearch.NoSuchIndexException;
|
58 | 58 | import org.springframework.data.elasticsearch.UncategorizedElasticsearchException;
|
59 |
| -import org.springframework.data.elasticsearch.client.reactive.ReactiveElasticsearchClient; |
| 59 | +import org.springframework.data.elasticsearch.backend.elasticsearch7.client.reactive.ReactiveElasticsearchClient; |
| 60 | +import org.springframework.data.elasticsearch.backend.elasticsearch7.cluster.DefaultReactiveClusterOperations; |
| 61 | +import org.springframework.data.elasticsearch.backend.elasticsearch7.document.DocumentAdapters; |
| 62 | +import org.springframework.data.elasticsearch.backend.elasticsearch7.document.SearchDocumentResponse; |
| 63 | +import org.springframework.data.elasticsearch.backend.elasticsearch7.query.NativeSearchQueryBuilder; |
| 64 | +import org.springframework.data.elasticsearch.clients.elasticsearch7.ElasticsearchAggregation; |
| 65 | +import org.springframework.data.elasticsearch.clients.elasticsearch7.RequestFactory; |
| 66 | +import org.springframework.data.elasticsearch.clients.elasticsearch7.ResponseConverter; |
| 67 | +import org.springframework.data.elasticsearch.core.*; |
60 | 68 | import org.springframework.data.elasticsearch.core.EntityOperations.AdaptibleEntity;
|
61 |
| -import org.springframework.data.elasticsearch.core.clients.elasticsearch7.ElasticsearchAggregation; |
62 |
| -import org.springframework.data.elasticsearch.core.cluster.DefaultReactiveClusterOperations; |
63 | 69 | import org.springframework.data.elasticsearch.core.cluster.ReactiveClusterOperations;
|
64 | 70 | import org.springframework.data.elasticsearch.core.convert.ElasticsearchConverter;
|
65 | 71 | import org.springframework.data.elasticsearch.core.convert.MappingElasticsearchConverter;
|
66 | 72 | import org.springframework.data.elasticsearch.core.document.Document;
|
67 |
| -import org.springframework.data.elasticsearch.core.document.DocumentAdapters; |
68 | 73 | import org.springframework.data.elasticsearch.core.document.SearchDocument;
|
69 |
| -import org.springframework.data.elasticsearch.core.document.SearchDocumentResponse; |
70 | 74 | import org.springframework.data.elasticsearch.core.event.ReactiveAfterConvertCallback;
|
71 | 75 | import org.springframework.data.elasticsearch.core.event.ReactiveAfterSaveCallback;
|
72 | 76 | import org.springframework.data.elasticsearch.core.event.ReactiveBeforeConvertCallback;
|
|
77 | 81 | import org.springframework.data.elasticsearch.core.query.BulkOptions;
|
78 | 82 | import org.springframework.data.elasticsearch.core.query.ByQueryResponse;
|
79 | 83 | import org.springframework.data.elasticsearch.core.query.IndexQuery;
|
80 |
| -import org.springframework.data.elasticsearch.core.query.NativeSearchQueryBuilder; |
81 | 84 | import org.springframework.data.elasticsearch.core.query.Query;
|
82 | 85 | import org.springframework.data.elasticsearch.core.query.SeqNoPrimaryTerm;
|
83 | 86 | import org.springframework.data.elasticsearch.core.query.UpdateQuery;
|
|
0 commit comments