21
21
import org .springframework .data .projection .ProjectionFactory ;
22
22
import org .springframework .data .repository .core .NamedQueries ;
23
23
import org .springframework .data .repository .core .RepositoryMetadata ;
24
- import org .springframework .data .repository .query .EvaluationContextProvider ;
25
24
import org .springframework .data .repository .query .QueryLookupStrategy ;
26
25
import org .springframework .data .repository .query .QueryLookupStrategy .Key ;
26
+ import org .springframework .data .repository .query .QueryMethodEvaluationContextProvider ;
27
27
import org .springframework .data .repository .query .RepositoryQuery ;
28
28
import org .springframework .util .Assert ;
29
29
@@ -51,7 +51,7 @@ private EbeanQueryLookupStrategy() {
51
51
* @return
52
52
*/
53
53
public static QueryLookupStrategy create (EbeanServer ebeanServer , Key key ,
54
- EvaluationContextProvider evaluationContextProvider ) {
54
+ QueryMethodEvaluationContextProvider evaluationContextProvider ) {
55
55
56
56
Assert .notNull (ebeanServer , "EbeanServer must not be null!" );
57
57
Assert .notNull (evaluationContextProvider , "EvaluationContextProvider must not be null!" );
@@ -181,7 +181,7 @@ protected RepositoryQuery resolveQuery(EbeanQueryMethod method, EbeanServer ebea
181
181
*/
182
182
private static class DeclaredQueryLookupStrategy extends AbstractQueryLookupStrategy {
183
183
184
- private final EvaluationContextProvider evaluationContextProvider ;
184
+ private final QueryMethodEvaluationContextProvider evaluationContextProvider ;
185
185
186
186
/**
187
187
* Creates a new {@link DeclaredQueryLookupStrategy}.
@@ -190,7 +190,7 @@ private static class DeclaredQueryLookupStrategy extends AbstractQueryLookupStra
190
190
* @param evaluationContextProvider
191
191
*/
192
192
public DeclaredQueryLookupStrategy (EbeanServer ebeanServer ,
193
- EvaluationContextProvider evaluationContextProvider ) {
193
+ QueryMethodEvaluationContextProvider evaluationContextProvider ) {
194
194
super (ebeanServer );
195
195
this .evaluationContextProvider = evaluationContextProvider ;
196
196
}
0 commit comments