Browse Source

Merge 207b1dc5b3 into 9c5eceafe9

pull/4589/merge
Henry Hargreaves 1 week ago committed by GitHub
parent
commit
35cc2821c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 11
      spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/query/Update.java

11
spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/query/Update.java

@ -133,6 +133,17 @@ public class Update implements UpdateDefinition { @@ -133,6 +133,17 @@ public class Update implements UpdateDefinition {
return this;
}
/**
* KeysToUpdate getter
*
* @return keys to update.
*/
public Set<String> getKeysToUpdate() {
return keysToUpdate;
}
/**
* Update using the {@literal $set} update modifier.
*

Loading…
Cancel
Save