diff --git a/driver-core/src/main/com/mongodb/AutoEncryptionSettings.java b/driver-core/src/main/com/mongodb/AutoEncryptionSettings.java index 229306ab2bb..22456a34a2b 100644 --- a/driver-core/src/main/com/mongodb/AutoEncryptionSettings.java +++ b/driver-core/src/main/com/mongodb/AutoEncryptionSettings.java @@ -31,7 +31,7 @@ import static java.util.Collections.unmodifiableMap; /** - * The client-side automatic encryption settings. Client side encryption enables an application to specify what fields in a collection + * The client-side automatic encryption settings. In-use encryption enables an application to specify what fields in a collection * must be encrypted, and the driver automatically encrypts commands sent to MongoDB and decrypts responses. *

* Automatic encryption is an enterprise only feature that only applies to operations on a collection. Automatic encryption is not diff --git a/driver-core/src/main/com/mongodb/MongoClientSettings.java b/driver-core/src/main/com/mongodb/MongoClientSettings.java index 672879419b3..ed9bc25b6ff 100644 --- a/driver-core/src/main/com/mongodb/MongoClientSettings.java +++ b/driver-core/src/main/com/mongodb/MongoClientSettings.java @@ -740,7 +740,7 @@ public ServerApi getServerApi() { /** * Gets the auto-encryption settings. *

- * Client side encryption enables an application to specify what fields in a collection must be + * In-use encryption enables an application to specify what fields in a collection must be * encrypted, and the driver automatically encrypts commands and decrypts results. *

*

diff --git a/driver-core/src/main/com/mongodb/client/model/CreateCollectionOptions.java b/driver-core/src/main/com/mongodb/client/model/CreateCollectionOptions.java index bf9b7f2109e..8c19c57df5b 100644 --- a/driver-core/src/main/com/mongodb/client/model/CreateCollectionOptions.java +++ b/driver-core/src/main/com/mongodb/client/model/CreateCollectionOptions.java @@ -336,7 +336,7 @@ public Bson getEncryptedFields() { * @param encryptedFields the encrypted fields document * @return this * @since 4.7 - * @mongodb.driver.manual core/security-client-side-encryption/ Client side encryption + * @mongodb.driver.manual core/security-client-side-encryption/ In-use encryption * @mongodb.server.release 6.0 */ public CreateCollectionOptions encryptedFields(@Nullable final Bson encryptedFields) { diff --git a/driver-core/src/main/com/mongodb/client/model/DropCollectionOptions.java b/driver-core/src/main/com/mongodb/client/model/DropCollectionOptions.java index 69aef1c5aa3..60d2ba95f4a 100644 --- a/driver-core/src/main/com/mongodb/client/model/DropCollectionOptions.java +++ b/driver-core/src/main/com/mongodb/client/model/DropCollectionOptions.java @@ -24,7 +24,7 @@ * Options for dropping a collection * * @mongodb.driver.manual reference/command/drop/ Drop Collection - * @mongodb.driver.manual core/security-client-side-encryption/ Client side encryption + * @mongodb.driver.manual core/security-client-side-encryption/ In-use encryption * @since 4.7 */ public class DropCollectionOptions { @@ -50,7 +50,7 @@ public Bson getEncryptedFields() { * @param encryptedFields the encrypted fields document * @return this * @since 4.7 - * @mongodb.driver.manual core/security-client-side-encryption/ Client side encryption + * @mongodb.driver.manual core/security-client-side-encryption/ In-use encryption */ public DropCollectionOptions encryptedFields(@Nullable final Bson encryptedFields) { this.encryptedFields = encryptedFields; diff --git a/driver-scala/src/main/scala/org/mongodb/scala/AutoEncryptionSettings.scala b/driver-scala/src/main/scala/org/mongodb/scala/AutoEncryptionSettings.scala index ee7ad69da10..0810bc391cd 100644 --- a/driver-scala/src/main/scala/org/mongodb/scala/AutoEncryptionSettings.scala +++ b/driver-scala/src/main/scala/org/mongodb/scala/AutoEncryptionSettings.scala @@ -18,7 +18,7 @@ package org.mongodb.scala import com.mongodb.{ AutoEncryptionSettings => JAutoEncryptionSettings } /** - * The client-side automatic encryption settings. Client side encryption enables an application to specify what fields in a collection + * The client-side automatic encryption settings. In-use encryption enables an application to specify what fields in a collection * must be encrypted, and the driver automatically encrypts commands sent to MongoDB and decrypts responses. * * Automatic encryption is an enterprise only feature that only applies to operations on a collection. Automatic encryption is not diff --git a/driver-scala/src/main/scala/org/mongodb/scala/package.scala b/driver-scala/src/main/scala/org/mongodb/scala/package.scala index 6dfd9891afe..bdc0b42b686 100644 --- a/driver-scala/src/main/scala/org/mongodb/scala/package.scala +++ b/driver-scala/src/main/scala/org/mongodb/scala/package.scala @@ -361,7 +361,7 @@ package object scala extends ClientSessionImplicits with ObservableImplicits wit type MongoConnectionPoolClearedException = com.mongodb.MongoConnectionPoolClearedException /** - * The client-side automatic encryption settings. Client side encryption enables an application to specify what fields in a collection + * The client-side automatic encryption settings. In-use encryption enables an application to specify what fields in a collection * must be encrypted, and the driver automatically encrypts commands sent to MongoDB and decrypts responses. * * Automatic encryption is an enterprise only feature that only applies to operations on a collection. Automatic encryption is not