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-kamelets.git
commit 8465717f745a5d200ffaa1c07ce9b4c385ca42ee Author: Andrea Cosentino <[email protected]> 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 <[email protected]> --- .../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); + } +}
