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


The following commit(s) were added to refs/heads/main by this push:
     new df2f57318c7 CAMEL-21265 - Create ApplicationEnvironmentPreparedEvent 
for Vault components - Azure Key Vault (#15948)
df2f57318c7 is described below

commit df2f57318c7bfede05932f7e7c559bfb6ce1c26b
Author: Andrea Cosentino <[email protected]>
AuthorDate: Mon Oct 14 18:34:03 2024 +0200

    CAMEL-21265 - Create ApplicationEnvironmentPreparedEvent for Vault 
components - Azure Key Vault (#15948)
    
    Signed-off-by: Andrea Cosentino <[email protected]>
---
 .../component/azure/key/vault/KeyVaultPropertiesFunction.java    | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git 
a/components/camel-azure/camel-azure-key-vault/src/main/java/org/apache/camel/component/azure/key/vault/KeyVaultPropertiesFunction.java
 
b/components/camel-azure/camel-azure-key-vault/src/main/java/org/apache/camel/component/azure/key/vault/KeyVaultPropertiesFunction.java
index dc39955ba5c..5fe0dc5f9d9 100644
--- 
a/components/camel-azure/camel-azure-key-vault/src/main/java/org/apache/camel/component/azure/key/vault/KeyVaultPropertiesFunction.java
+++ 
b/components/camel-azure/camel-azure-key-vault/src/main/java/org/apache/camel/component/azure/key/vault/KeyVaultPropertiesFunction.java
@@ -88,6 +88,15 @@ public class KeyVaultPropertiesFunction extends 
ServiceSupport implements Proper
     private SecretClient client;
     private final Set<String> secrets = new HashSet<>();
 
+    public KeyVaultPropertiesFunction() {
+        super();
+    }
+
+    public KeyVaultPropertiesFunction(SecretClient client) {
+        super();
+        this.client = client;
+    }
+
     @Override
     protected void doStart() throws Exception {
         super.doStart();

Reply via email to