This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch CAMEL-21265-AWS
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 532000fa604aa5435bc8b026e8b1098d639a34ac
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Mon Oct 14 14:14:16 2024 +0200

    CAMEL-21265 - Create ApplicationEnvironmentPreparedEvent for Vault 
components - AWS Secrets Manager
    
    Signed-off-by: Andrea Cosentino <anco...@gmail.com>
---
 .../aws/secretsmanager/SecretsManagerPropertiesFunction.java     | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git 
a/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerPropertiesFunction.java
 
b/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerPropertiesFunction.java
index 13219d8263c..7ab78ae2d2c 100644
--- 
a/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerPropertiesFunction.java
+++ 
b/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerPropertiesFunction.java
@@ -106,6 +106,15 @@ public class SecretsManagerPropertiesFunction extends 
ServiceSupport implements
 
     private String profileName;
 
+    public SecretsManagerPropertiesFunction() {
+        super();
+    }
+
+    public SecretsManagerPropertiesFunction(SecretsManagerClient client) {
+        super();
+        this.client = client;
+    }
+
     @Override
     protected void doStart() throws Exception {
         super.doStart();

Reply via email to