This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit ee2489b7efe4e27bb9f48e5c7f8b2621212c9141 Author: Andrea Cosentino <[email protected]> AuthorDate: Mon Apr 4 11:41:33 2022 +0200 CAMEL-17686 - Support ability to load properties from Vault/Secrets cloud services - Azure Key Vault --- .../main/java/org/apache/camel/vault/AzureVaultConfiguration.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/camel-api/src/main/java/org/apache/camel/vault/AzureVaultConfiguration.java b/core/camel-api/src/main/java/org/apache/camel/vault/AzureVaultConfiguration.java index e5f74ff6a41..6731a3e71dc 100644 --- a/core/camel-api/src/main/java/org/apache/camel/vault/AzureVaultConfiguration.java +++ b/core/camel-api/src/main/java/org/apache/camel/vault/AzureVaultConfiguration.java @@ -32,7 +32,7 @@ public class AzureVaultConfiguration extends VaultConfiguration { @Metadata(secret = true) private String tenantId; - /* + /** * The vault Name in Azure Key Vault */ public String getVaultName() { @@ -43,7 +43,7 @@ public class AzureVaultConfiguration extends VaultConfiguration { this.vaultName = vaultName; } - /* + /** * The client Id for accessing Azure Key Vault */ public String getClientId() { @@ -54,7 +54,7 @@ public class AzureVaultConfiguration extends VaultConfiguration { this.clientId = clientId; } - /* + /** * The client Secret for accessing Azure Key Vault */ public String getClientSecret() { @@ -65,7 +65,7 @@ public class AzureVaultConfiguration extends VaultConfiguration { this.clientSecret = clientSecret; } - /* + /** * The Tenant Id for accessing Azure Key Vault */ public String getTenantId() {
