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 b8b7f058177 CAMEL-21265 - Create ApplicationEnvironmentPreparedEvent 
for Vault components - Google Secret Manager (#15947)
b8b7f058177 is described below

commit b8b7f058177eb00802e2e0f861a1f96446f8e7d2
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Mon Oct 14 18:02:23 2024 +0200

    CAMEL-21265 - Create ApplicationEnvironmentPreparedEvent for Vault 
components - Google Secret Manager (#15947)
    
    Signed-off-by: Andrea Cosentino <anco...@gmail.com>
---
 .../secret/manager/GoogleSecretManagerPropertiesFunction.java    | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git 
a/components/camel-google/camel-google-secret-manager/src/main/java/org/apache/camel/component/google/secret/manager/GoogleSecretManagerPropertiesFunction.java
 
b/components/camel-google/camel-google-secret-manager/src/main/java/org/apache/camel/component/google/secret/manager/GoogleSecretManagerPropertiesFunction.java
index 1548a0d9e19..600a9b52d2c 100644
--- 
a/components/camel-google/camel-google-secret-manager/src/main/java/org/apache/camel/component/google/secret/manager/GoogleSecretManagerPropertiesFunction.java
+++ 
b/components/camel-google/camel-google-secret-manager/src/main/java/org/apache/camel/component/google/secret/manager/GoogleSecretManagerPropertiesFunction.java
@@ -86,6 +86,15 @@ public class GoogleSecretManagerPropertiesFunction extends 
ServiceSupport implem
     private String projectId;
     private final Set<String> secrets = new HashSet<>();
 
+    public GoogleSecretManagerPropertiesFunction() {
+        super();
+    }
+
+    public GoogleSecretManagerPropertiesFunction(SecretManagerServiceClient 
client) {
+        super();
+        this.client = client;
+    }
+
     @Override
     protected void doStart() throws Exception {
         super.doStart();

Reply via email to