All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.identity.ClientCertificateCredential Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.identity;

import com.azure.core.annotation.Immutable;
import com.azure.core.credential.AccessToken;
import com.azure.core.credential.TokenCredential;
import com.azure.core.credential.TokenRequestContext;
import com.azure.core.util.logging.ClientLogger;
import com.azure.identity.implementation.IdentityClient;
import com.azure.identity.implementation.IdentityClientBuilder;
import com.azure.identity.implementation.IdentityClientOptions;
import com.azure.identity.implementation.util.LoggingUtil;
import reactor.core.publisher.Mono;

import java.io.InputStream;
import java.util.Objects;

/**
 * An AAD credential that acquires a token with a client certificate for an AAD application.
 *
 * 

Sample: Construct a simple ClientCertificateCredential

* *
 * ClientCertificateCredential credential1 = new ClientCertificateCredentialBuilder()
 *     .tenantId(tenantId)
 *     .clientId(clientId)
 *     .pemCertificate("<PATH-TO-PEM-CERTIFICATE>")
 *     .build();
 * 
* * *

Sample: Construct a ClientCertificateCredential behind a proxy

* *
 * ClientCertificateCredential credential2 = new ClientCertificateCredentialBuilder()
 *     .tenantId(tenantId)
 *     .clientId(clientId)
 *     .pfxCertificate("<PATH-TO-PFX-CERTIFICATE>", "P@s$w0rd")
 *     .proxyOptions(new ProxyOptions(Type.HTTP, new InetSocketAddress("10.21.32.43", 5465)))
 *     .build();
 * 
* */ @Immutable public class ClientCertificateCredential implements TokenCredential { private static final ClientLogger LOGGER = new ClientLogger(ClientCertificateCredential.class); private final IdentityClient identityClient; /** * Creates a ClientSecretCredential with default identity client options. * @param tenantId the tenant ID of the application * @param clientId the client ID of the application * @param certificatePath the PEM file or PFX file containing the certificate * @param certificate the PEM or PFX certificate * @param certificatePassword the password protecting the PFX file * @param identityClientOptions the options to configure the identity client */ ClientCertificateCredential(String tenantId, String clientId, String certificatePath, InputStream certificate, String certificatePassword, IdentityClientOptions identityClientOptions) { Objects.requireNonNull(certificatePath == null ? certificate : certificatePath, "'certificate' and 'certificatePath' cannot both be null."); identityClient = new IdentityClientBuilder() .tenantId(tenantId) .clientId(clientId) .certificatePath(certificatePath) .certificate(certificate) .certificatePassword(certificatePassword) .identityClientOptions(identityClientOptions) .build(); } @Override public Mono getToken(TokenRequestContext request) { return identityClient.authenticateWithConfidentialClientCache(request) .onErrorResume(t -> Mono.empty()) .switchIfEmpty(Mono.defer(() -> identityClient.authenticateWithConfidentialClient(request))) .doOnNext(token -> LoggingUtil.logTokenSuccess(LOGGER, request)) .doOnError(error -> LoggingUtil.logTokenError(LOGGER, identityClient.getIdentityClientOptions(), request, error)); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy