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 ea4945b7460 CAMEL-21265 - Create ApplicationEnvironmentPreparedEvent 
for Vault components - AWS Secrets Manager (#15945)
ea4945b7460 is described below

commit ea4945b74605de2a5b6f1fe1f590df7b06a0ac45
Author: Andrea Cosentino <[email protected]>
AuthorDate: Mon Oct 14 14:40:22 2024 +0200

    CAMEL-21265 - Create ApplicationEnvironmentPreparedEvent for Vault 
components - AWS Secrets Manager (#15945)
    
    Signed-off-by: Andrea Cosentino <[email protected]>
---
 .../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