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-benchmarks/src/main/java/org/springframework/data/mongodb/core/ProjectionsBenchmark.java
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/ExecutableAggregationOperation.java
+11-12
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@
31
31
* <code>
32
32
* aggregateAndReturn(Jedi.class)
33
33
* .by(newAggregation(Human.class, project("These are not the droids you are looking for")))
34
-
* .get();
34
+
* .all();
35
35
* </code>
36
36
* </pre>
37
37
*
@@ -47,28 +47,28 @@ public interface ExecutableAggregationOperation {
47
47
* input type for he aggregation.
48
48
*
49
49
* @param domainType must not be {@literal null}.
50
-
* @return new instance of {@link AggregationOperation}.
50
+
* @return new instance of {@link ExecutableAggregation}.
51
51
* @throws IllegalArgumentException if domainType is {@literal null}.
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/ExecutableAggregationOperationSupport.java
+9-8
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,7 @@
28
28
* Implementation of {@link ExecutableAggregationOperation} operating directly on {@link MongoTemplate}.
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/ExecutableFindOperationSupport.java
+11-11
Original file line number
Diff line number
Diff line change
@@ -61,11 +61,11 @@ class ExecutableFindOperationSupport implements ExecutableFindOperation {
61
61
}
62
62
63
63
@Override
64
-
public <T> FindOperation<T> query(Class<T> domainType) {
64
+
public <T> ExecutableFind<T> query(Class<T> domainType) {
65
65
66
66
Assert.notNull(domainType, "DomainType must not be null!");
0 commit comments