File tree Expand file tree Collapse file tree 3 files changed +24
-1
lines changed
src/main/java/org/springframework/data/elasticsearch/core/query Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 25
25
*
26
26
* @author Rizwan Idrees
27
27
* @author Mohsin Husen
28
+ * @author Artur Konczak
28
29
*/
29
30
public class NativeSearchQuery extends AbstractQuery implements SearchQuery {
30
31
Original file line number Diff line number Diff line change 25
25
*
26
26
* @author Rizwan Idrees
27
27
* @author Mohsin Husen
28
+ * @author Artur Konczak
28
29
*/
29
30
30
31
public class NativeSearchQueryBuilder {
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2013 the original author or authors.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
package org .springframework .data .elasticsearch .core .query ;
2
17
3
18
import org .elasticsearch .index .query .FilterBuilder ;
4
19
import org .elasticsearch .index .query .QueryBuilder ;
5
20
import org .elasticsearch .search .sort .SortBuilder ;
6
-
21
+ /**
22
+ * NativeSearchQuery
23
+ *
24
+ * @author Rizwan Idrees
25
+ * @author Mohsin Husen
26
+ * @author Artur Konczak
27
+ */
7
28
public interface SearchQuery extends Query {
8
29
QueryBuilder getQuery ();
9
30
FilterBuilder getFilter ();
You can’t perform that action at this time.
0 commit comments