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-couchbase/src/main/java/org/springframework/data/couchbase/core/NonReactiveSupportWrapper.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ public Mono<CouchbaseDocument> encodeEntity(Object entityToEncode) {
42
42
}
43
43
44
44
@Override
45
-
public <T> Mono<T> decodeEntity(Stringid, Stringsource, Longcas, Class<T> entityClass, Stringscope, Stringcollection,
45
+
public <T> Mono<T> decodeEntity(Objectid, Stringsource, Longcas, Class<T> entityClass, Stringscope, Stringcollection,
Copy file name to clipboardExpand all lines: spring-data-couchbase/src/main/java/org/springframework/data/couchbase/core/ReactiveCouchbaseTemplateSupport.java
Copy file name to clipboardExpand all lines: spring-data-couchbase/src/main/java/org/springframework/data/couchbase/core/ReactiveFindByIdOperation.java
Copy file name to clipboardExpand all lines: spring-data-couchbase/src/main/java/org/springframework/data/couchbase/core/ReactiveFindByIdOperationSupport.java
Copy file name to clipboardExpand all lines: spring-data-couchbase/src/main/java/org/springframework/data/couchbase/core/ReactiveInsertByIdOperationSupport.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -97,13 +97,13 @@ public Mono<T> one(T object) {
Copy file name to clipboardExpand all lines: spring-data-couchbase/src/main/java/org/springframework/data/couchbase/core/ReactiveRemoveByIdOperation.java
Copy file name to clipboardExpand all lines: spring-data-couchbase/src/main/java/org/springframework/data/couchbase/core/ReactiveRemoveByIdOperationSupport.java
+4-4
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,7 @@ static class ReactiveRemoveByIdSupport implements ReactiveRemoveById {
Copy file name to clipboardExpand all lines: spring-data-couchbase/src/main/java/org/springframework/data/couchbase/core/ReactiveReplaceByIdOperationSupport.java
+3-3
Original file line number
Diff line number
Diff line change
@@ -101,7 +101,7 @@ public Mono<T> one(T object) {
Copy file name to clipboardExpand all lines: spring-data-couchbase/src/main/java/org/springframework/data/couchbase/core/ReactiveUpsertByIdOperationSupport.java
Copy file name to clipboardExpand all lines: spring-data-couchbase/src/main/java/org/springframework/data/couchbase/core/mapping/CouchbaseDocument.java
+5-5
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ public class CouchbaseDocument implements CouchbaseStorable {
49
49
/**
50
50
* Represents the document ID used to identify the document in the bucket.
51
51
*/
52
-
privateStringid;
52
+
privateObjectid;
53
53
54
54
/**
55
55
* Contains the expiration time of the document.
@@ -68,7 +68,7 @@ public CouchbaseDocument() {
68
68
*
69
69
* @param id the document ID.
70
70
*/
71
-
publicCouchbaseDocument(finalStringid) {
71
+
publicCouchbaseDocument(finalObjectid) {
72
72
this(id, DEFAULT_EXPIRATION_TIME);
73
73
}
74
74
@@ -78,7 +78,7 @@ public CouchbaseDocument(final String id) {
78
78
* @param id the document ID.
79
79
* @param expiration the expiration time of the document.
Copy file name to clipboardExpand all lines: spring-data-couchbase/src/main/java/org/springframework/data/couchbase/core/support/OneAndAllIdReactive.java
0 commit comments