@@ -56,21 +56,21 @@ default <S extends T> S index(S entity) {
56
56
<S extends T > S indexWithoutRefresh (S entity );
57
57
58
58
/**
59
- * @deprecated since 4.0, use {@link #searchQuery(Query)}, standard repository method naming or @{@link Query}
59
+ * @deprecated since 4.0, use standard repository method naming or @{@link Query}
60
60
* annotated methods, or {@link org.springframework.data.elasticsearch.core.ElasticsearchOperations}.
61
61
*/
62
62
@ Deprecated
63
63
Iterable <T > search (QueryBuilder query );
64
64
65
65
/**
66
- * @deprecated since 4.0, use {@link #searchQuery(Query)}, standard repository method naming or @{@link Query}
66
+ * @deprecated since 4.0, use standard repository method naming or @{@link Query}
67
67
* annotated methods, or {@link org.springframework.data.elasticsearch.core.ElasticsearchOperations}.
68
68
*/
69
69
@ Deprecated
70
70
Page <T > search (QueryBuilder query , Pageable pageable );
71
71
72
72
/**
73
- * @deprecated since 4.0, use {@link #searchQuery(Query)}, standard repository method naming or @{@link Query}
73
+ * @deprecated since 4.0, use standard repository method naming or @{@link Query}
74
74
* annotated methods, or {@link org.springframework.data.elasticsearch.core.ElasticsearchOperations}.
75
75
*/
76
76
Page <T > search (Query searchQuery );
@@ -86,7 +86,7 @@ default <S extends T> S index(S entity) {
86
86
Page <T > searchSimilar (T entity , @ Nullable String [] fields , Pageable pageable );
87
87
88
88
/**
89
- * @deprecated since 4.0, use {@link IndexOperations#refresh(Class )} instead. Repository methods should call refresh
89
+ * @deprecated since 4.0, use {@link IndexOperations#refresh()} instead. Repository methods should call refresh
90
90
* in their implementation.
91
91
*/
92
92
@ Deprecated
0 commit comments