File tree 6 files changed +7
-7
lines changed
driver-core/src/main/com/mongodb
driver-scala/src/main/scala/org/mongodb/scala
6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 31
31
import static java .util .Collections .unmodifiableMap ;
32
32
33
33
/**
34
- * The client-side automatic encryption settings. Client side encryption enables an application to specify what fields in a collection
34
+ * The client-side automatic encryption settings. In-use encryption enables an application to specify what fields in a collection
35
35
* must be encrypted, and the driver automatically encrypts commands sent to MongoDB and decrypts responses.
36
36
* <p>
37
37
* Automatic encryption is an enterprise only feature that only applies to operations on a collection. Automatic encryption is not
Original file line number Diff line number Diff line change @@ -740,7 +740,7 @@ public ServerApi getServerApi() {
740
740
/**
741
741
* Gets the auto-encryption settings.
742
742
* <p>
743
- * Client side encryption enables an application to specify what fields in a collection must be
743
+ * In-use encryption enables an application to specify what fields in a collection must be
744
744
* encrypted, and the driver automatically encrypts commands and decrypts results.
745
745
* </p>
746
746
* <p>
Original file line number Diff line number Diff line change @@ -336,7 +336,7 @@ public Bson getEncryptedFields() {
336
336
* @param encryptedFields the encrypted fields document
337
337
* @return this
338
338
* @since 4.7
339
- * @mongodb.driver.manual core/security-client-side-encryption/ Client side encryption
339
+ * @mongodb.driver.manual core/security-client-side-encryption/ In-use encryption
340
340
* @mongodb.server.release 6.0
341
341
*/
342
342
public CreateCollectionOptions encryptedFields (@ Nullable final Bson encryptedFields ) {
Original file line number Diff line number Diff line change 24
24
* Options for dropping a collection
25
25
*
26
26
* @mongodb.driver.manual reference/command/drop/ Drop Collection
27
- * @mongodb.driver.manual core/security-client-side-encryption/ Client side encryption
27
+ * @mongodb.driver.manual core/security-client-side-encryption/ In-use encryption
28
28
* @since 4.7
29
29
*/
30
30
public class DropCollectionOptions {
@@ -50,7 +50,7 @@ public Bson getEncryptedFields() {
50
50
* @param encryptedFields the encrypted fields document
51
51
* @return this
52
52
* @since 4.7
53
- * @mongodb.driver.manual core/security-client-side-encryption/ Client side encryption
53
+ * @mongodb.driver.manual core/security-client-side-encryption/ In-use encryption
54
54
*/
55
55
public DropCollectionOptions encryptedFields (@ Nullable final Bson encryptedFields ) {
56
56
this .encryptedFields = encryptedFields ;
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ package org.mongodb.scala
18
18
import com .mongodb .{ AutoEncryptionSettings => JAutoEncryptionSettings }
19
19
20
20
/**
21
- * The client-side automatic encryption settings. Client side encryption enables an application to specify what fields in a collection
21
+ * The client-side automatic encryption settings. In-use encryption enables an application to specify what fields in a collection
22
22
* must be encrypted, and the driver automatically encrypts commands sent to MongoDB and decrypts responses.
23
23
*
24
24
* Automatic encryption is an enterprise only feature that only applies to operations on a collection. Automatic encryption is not
Original file line number Diff line number Diff line change @@ -361,7 +361,7 @@ package object scala extends ClientSessionImplicits with ObservableImplicits wit
361
361
type MongoConnectionPoolClearedException = com.mongodb.MongoConnectionPoolClearedException
362
362
363
363
/**
364
- * The client-side automatic encryption settings. Client side encryption enables an application to specify what fields in a collection
364
+ * The client-side automatic encryption settings. In-use encryption enables an application to specify what fields in a collection
365
365
* must be encrypted, and the driver automatically encrypts commands sent to MongoDB and decrypts responses.
366
366
*
367
367
* Automatic encryption is an enterprise only feature that only applies to operations on a collection. Automatic encryption is not
You can’t perform that action at this time.
0 commit comments