This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch 1713 in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit e2c290a6a1cb47cf37a6b0cb40c2a5b0f7175b62 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Thu Nov 16 09:30:23 2023 +0100 Remove Azure Schema Registry DefaultCredentialWrapper from library Signed-off-by: Andrea Cosentino <anco...@gmail.com> --- .../registry/DefaultAzureCredentialWrapper.java | 37 ---------------------- 1 file changed, 37 deletions(-) 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 deleted file mode 100644 index dd0dcdc5..00000000 --- a/library/camel-kamelets-utils/src/main/java/org/apache/camel/kamelets/utils/kafka/registry/DefaultAzureCredentialWrapper.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * 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); - } -}