You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/10/19 11:04:59 UTC

[camel-kamelets] 01/08: Create a Specialized Kamelet starting from Kafka Source using Azure Schema Registry - Added the Credential bean

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

acosentino pushed a commit to branch azure-source-schema-reg
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit f924518f0db04ece215bae4ae1ff118d0317ed53
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Oct 19 12:47:37 2023 +0200

    Create a Specialized Kamelet starting from Kafka Source using Azure Schema Registry - Added the Credential bean
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../registry/DefaultAzureCredentialWrapper.java    | 37 ++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/library/camel-kamelets-utils/src/main/java/org/apache/camel/kamelets/utils/kafka/registry/DefaultAzureCredentialWrapper.java b/library/camel-kamelets-utils/src/main/java/org/apache/camel/kamelets/utils/kafka/registry/DefaultAzureCredentialWrapper.java
new file mode 100644
index 00000000..dd0dcdc5
--- /dev/null
+++ b/library/camel-kamelets-utils/src/main/java/org/apache/camel/kamelets/utils/kafka/registry/DefaultAzureCredentialWrapper.java
@@ -0,0 +1,37 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.kamelets.utils.kafka.registry;
+
+import com.azure.core.credential.AccessToken;
+import com.azure.core.credential.TokenCredential;
+import com.azure.core.credential.TokenRequestContext;
+import com.azure.identity.DefaultAzureCredentialBuilder;
+import reactor.core.publisher.Mono;
+
+public class DefaultAzureCredentialWrapper implements TokenCredential {
+
+    private final TokenCredential credential;
+
+    public DefaultAzureCredentialWrapper() {
+        this.credential = new DefaultAzureCredentialBuilder().build();
+    }
+
+    @Override
+    public Mono<AccessToken> getToken(TokenRequestContext tokenRequestContext) {
+        return this.credential.getToken(tokenRequestContext);
+    }
+}