Skip to content

Commit 21c88ca

Browse files
committed
Updated author information
1 parent 807b194 commit 21c88ca

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

src/main/java/org/springframework/data/elasticsearch/core/query/NativeSearchQuery.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
*
2626
* @author Rizwan Idrees
2727
* @author Mohsin Husen
28+
* @author Artur Konczak
2829
*/
2930
public class NativeSearchQuery extends AbstractQuery implements SearchQuery {
3031

src/main/java/org/springframework/data/elasticsearch/core/query/NativeSearchQueryBuilder.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
*
2626
* @author Rizwan Idrees
2727
* @author Mohsin Husen
28+
* @author Artur Konczak
2829
*/
2930

3031
public class NativeSearchQueryBuilder {

src/main/java/org/springframework/data/elasticsearch/core/query/SearchQuery.java

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,30 @@
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+
*/
116
package org.springframework.data.elasticsearch.core.query;
217

318
import org.elasticsearch.index.query.FilterBuilder;
419
import org.elasticsearch.index.query.QueryBuilder;
520
import org.elasticsearch.search.sort.SortBuilder;
6-
21+
/**
22+
* NativeSearchQuery
23+
*
24+
* @author Rizwan Idrees
25+
* @author Mohsin Husen
26+
* @author Artur Konczak
27+
*/
728
public interface SearchQuery extends Query {
829
QueryBuilder getQuery();
930
FilterBuilder getFilter();

0 commit comments

Comments
 (0)