public final class ClientEncryptionSettings
extends java.lang.Object
Explicit encryption/decryption is a community feature, enabled with the new com.mongodb.client.vault.ClientEncryption
type,
for which this is the settings.
Modifier and Type | Class and Description |
---|---|
static class |
ClientEncryptionSettings.Builder
A builder for
ClientEncryptionSettings so that ClientEncryptionSettings can be immutable, and to support easier
construction through chaining. |
Modifier and Type | Method and Description |
---|---|
static ClientEncryptionSettings.Builder |
builder()
Convenience method to create a Builder.
|
MongoClientSettings |
getKeyVaultMongoClientSettings()
Gets the key vault settings.
|
java.lang.String |
getKeyVaultNamespace()
Gets the key vault namespace.
|
java.util.Map<java.lang.String,java.util.Map<java.lang.String,java.lang.Object>> |
getKmsProviders()
Gets the map of KMS provider properties.
|
public static ClientEncryptionSettings.Builder builder()
public MongoClientSettings getKeyVaultMongoClientSettings()
The key vault collection is assumed to reside on the same MongoDB cluster as indicated by the connecting URI. But the optional keyVaultMongoClientSettings can be used to route data key queries to a separate MongoDB cluster, or the same cluster but with a different credential.
MongoClient
should be used to access the key
vault collection as is used for the rest of the application.public java.lang.String getKeyVaultNamespace()
The key vault namespace refers to a collection that contains all data keys used for encryption and decryption (aka the key vault collection). Data keys are stored as documents in a special MongoDB collection. Data keys are protected with encryption by a KMS provider (AWS KMS or a local master key).
public java.util.Map<java.lang.String,java.util.Map<java.lang.String,java.lang.Object>> getKmsProviders()
Multiple KMS providers may be specified. Initially, two KMS providers are supported: "aws" and "local". The kmsProviders map values differ by provider:
For "aws", the properties are:
For "local", the properties are:
Copyright © 2010 - 2023 Adobe. All Rights Reserved