We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ParameterAccessor.getScrollPosition()
1 parent ade9032 commit a7d6b9dCopy full SHA for a7d6b9d
src/test/java/org/springframework/data/elasticsearch/repository/query/StubParameterAccessor.java
@@ -20,6 +20,7 @@
20
import java.util.Optional;
21
22
import org.springframework.data.domain.Pageable;
23
+import org.springframework.data.domain.ScrollPosition;
24
import org.springframework.data.domain.Sort;
25
import org.springframework.data.repository.query.ParameterAccessor;
26
@@ -37,6 +38,11 @@ class StubParameterAccessor implements ElasticsearchParameterAccessor {
37
38
this.values = values;
39
}
40
41
+ @Override
42
+ public ScrollPosition getScrollPosition() {
43
+ return null;
44
+ }
45
+
46
/*
47
* (non-Javadoc)
48
* @see org.springframework.data.repository.query.ParameterAccessor#getPageable()
0 commit comments