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

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

commit 3d6f5cf8c1ead76d86fdf09f255f6e3e67068be3
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Mon Oct 14 17:56:43 2024 +0200

    CAMEL-21265 - Create ApplicationEnvironmentPreparedEvent for Vault 
components - Google Secret Manager
    
    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