You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/main/java/org/springframework/data/mongodb/repository/query/MongoParameterAccessor.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@
23
23
24
24
/**
25
25
* Mongo-specific {@link ParameterAccessor} exposing a maximum distance parameter.
26
-
*
26
+
*
27
27
* @author Oliver Gierke
28
28
* @author Christoph Strobl
29
29
* @author Thomas Darimont
@@ -32,30 +32,30 @@ public interface MongoParameterAccessor extends ParameterAccessor {
32
32
33
33
/**
34
34
* Returns a {@link Distance} to be applied to Mongo geo queries.
35
-
*
35
+
*
36
36
* @return the maximum distance to apply to the geo query or {@literal null} if there's no {@link Distance} parameter
37
37
* at all or the given value for it was {@literal null}.
38
38
*/
39
39
Range<Distance> getDistanceRange();
40
40
41
41
/**
42
42
* Returns the {@link Point} to use for a geo-near query.
43
-
*
43
+
*
44
44
* @return
45
45
*/
46
46
PointgetGeoNearLocation();
47
47
48
48
/**
49
49
* Returns the {@link TextCriteria} to be used for full text query.
50
-
*
50
+
*
51
51
* @return null if not set.
52
52
* @since 1.6
53
53
*/
54
54
TextCriteriagetFullText();
55
55
56
56
/**
57
57
* Returns the raw parameter values of the underlying query method.
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/main/java/org/springframework/data/mongodb/repository/query/MongoQueryCreator.java
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2010-2017 the original author or authors.
2
+
* Copyright 2010-2018 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/test/java/org/springframework/data/mongodb/repository/query/MongoQueryCreatorUnitTests.java
+7-8Lines changed: 7 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2011-2017 the original author or authors.
2
+
* Copyright 2011-2018 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -26,7 +26,6 @@
26
26
importjava.util.List;
27
27
importjava.util.regex.Pattern;
28
28
29
-
importorg.bson.Document;
30
29
importorg.bson.types.ObjectId;
31
30
importorg.junit.Before;
32
31
importorg.junit.Rule;
@@ -79,7 +78,7 @@ public class MongoQueryCreatorUnitTests {
0 commit comments