Skip to content

Commit a4df4b4

Browse files
committed
Mark client side encryption package as beta
JAVA-3071 JAVA-3377
1 parent c558058 commit a4df4b4

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

driver-async/src/main/com/mongodb/async/client/vault/package-info.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,14 @@
1717
/**
1818
* This package contains the Key Vault API
1919
*
20+
* <p>
21+
* Note: support for client-side encryption is in beta. Backwards-breaking changes may be made before the final release.
22+
* </p>
2023
* @since 3.11
2124
*/
25+
@Beta
2226
@NonNullApi
2327
package com.mongodb.async.client.vault;
2428

29+
import com.mongodb.annotations.Beta;
2530
import com.mongodb.lang.NonNullApi;

driver-core/src/main/com/mongodb/annotations/Beta.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
ElementType.CONSTRUCTOR,
4545
ElementType.FIELD,
4646
ElementType.METHOD,
47+
ElementType.PACKAGE,
4748
ElementType.TYPE })
4849
@Documented
4950
@Beta

driver-sync/src/main/com/mongodb/client/vault/package-info.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,14 @@
1717
/**
1818
* This package contains the Key Vault API
1919
*
20+
* <p>
21+
* Note: support for client-side encryption is in beta. Backwards-breaking changes may be made before the final release.
22+
* </p>
2023
* @since 3.11
2124
*/
25+
@Beta
2226
@NonNullApi
2327
package com.mongodb.client.vault;
2428

29+
import com.mongodb.annotations.Beta;
2530
import com.mongodb.lang.NonNullApi;

0 commit comments

Comments
 (0)