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/ExpressionEvaluatingParameterBinder.java
+24-28Lines changed: 24 additions & 28 deletions
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@
45
45
/**
46
46
* {@link ExpressionEvaluatingParameterBinder} allows to evaluate, convert and bind parameters to placeholders within a
47
47
* {@link String}.
48
-
*
48
+
*
49
49
* @author Christoph Strobl
50
50
* @author Thomas Darimont
51
51
* @author Oliver Gierke
@@ -59,7 +59,7 @@ class ExpressionEvaluatingParameterBinder {
59
59
60
60
/**
61
61
* Creates new {@link ExpressionEvaluatingParameterBinder}
62
-
*
62
+
*
63
63
* @param expressionParser must not be {@literal null}.
64
64
* @param evaluationContextProvider must not be {@literal null}.
65
65
*/
@@ -76,7 +76,7 @@ public ExpressionEvaluatingParameterBinder(SpelExpressionParser expressionParser
76
76
/**
77
77
* Bind values provided by {@link MongoParameterAccessor} to placeholders in {@literal raw} while considering
78
78
* potential conversions and parameter types.
79
-
*
79
+
*
80
80
* @param raw can be {@literal null} or empty.
81
81
* @param accessor must not be {@literal null}.
82
82
* @param bindingContext must not be {@literal null}.
@@ -93,7 +93,7 @@ public String bind(String raw, MongoParameterAccessor accessor, BindingContext b
93
93
94
94
/**
95
95
* Replaced the parameter placeholders with the actual parameter values from the given {@link ParameterBinding}s.
96
-
*
96
+
*
97
97
* @param input must not be {@literal null} or empty.
98
98
* @param accessor must not be {@literal null}.
99
99
* @param bindingContext must not be {@literal null}.
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/main/java/org/springframework/data/mongodb/repository/query/StringBasedMongoQuery.java
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2011-2016 the original author or authors.
2
+
* Copyright 2011-2017 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.
@@ -38,7 +38,7 @@
38
38
39
39
/**
40
40
* Query to use a plain JSON String to create the {@link Query} to actually execute.
41
-
*
41
+
*
42
42
* @author Oliver Gierke
43
43
* @author Christoph Strobl
44
44
* @author Thomas Darimont
@@ -61,7 +61,7 @@ public class StringBasedMongoQuery extends AbstractMongoQuery {
61
61
62
62
/**
63
63
* Creates a new {@link StringBasedMongoQuery} for the given {@link MongoQueryMethod} and {@link MongoOperations}.
64
-
*
64
+
*
65
65
* @param method must not be {@literal null}.
66
66
* @param mongoOperations must not be {@literal null}.
67
67
* @param expressionParser must not be {@literal null}.
@@ -99,7 +99,6 @@ public StringBasedMongoQuery(String query, MongoQueryMethod method, MongoOperati
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/test/java/org/springframework/data/mongodb/repository/query/StringBasedMongoQueryUnitTests.java
0 commit comments