Package com.azure.identity
Class AadCredentialBuilderBase<T extends AadCredentialBuilderBase<T>>
java.lang.Object
com.azure.identity.CredentialBuilderBase<T>
com.azure.identity.AadCredentialBuilderBase<T>
- Type Parameters:
T
- the type of the credential builder
- Direct Known Subclasses:
AuthorizationCodeCredentialBuilder
,ClientAssertionCredentialBuilder
,ClientCertificateCredentialBuilder
,ClientSecretCredentialBuilder
,DeviceCodeCredentialBuilder
,InteractiveBrowserCredentialBuilder
,OnBehalfOfCredentialBuilder
,SharedTokenCacheCredentialBuilder
,UsernamePasswordCredentialBuilder
public abstract class AadCredentialBuilderBase<T extends AadCredentialBuilderBase<T>>
extends CredentialBuilderBase<T>
The base class for credential builders that allow specifying a client ID and tenant ID for an Azure Active Directory.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionauthorityHost
(String authorityHost) Specifies the Azure Active Directory endpoint to acquire tokens.Sets the client ID of the application.executorService
(ExecutorService executorService) Specifies the ExecutorService to be used to execute the authentication requests.Sets the tenant ID of the application.Methods inherited from class com.azure.identity.CredentialBuilderBase
configuration, enableAccountIdentifierLogging, httpClient, httpPipeline, maxRetry, proxyOptions, retryTimeout
-
Constructor Details
-
AadCredentialBuilderBase
public AadCredentialBuilderBase()
-
-
Method Details
-
authorityHost
Specifies the Azure Active Directory endpoint to acquire tokens.- Parameters:
authorityHost
- the Azure Active Directory endpoint- Returns:
- An updated instance of this builder with the authority host set as specified.
-
clientId
Sets the client ID of the application.- Parameters:
clientId
- the client ID of the application.- Returns:
- An updated instance of this builder with the client id set as specified.
-
tenantId
Sets the tenant ID of the application.- Parameters:
tenantId
- the tenant ID of the application.- Returns:
- An updated instance of this builder with the tenant id set as specified.
-
executorService
Specifies the ExecutorService to be used to execute the authentication requests. Developer is responsible for maintaining the lifecycle of the ExecutorService.If this is not configured, the
ForkJoinPool.commonPool()
will be used which is also shared with other application tasks. If the common pool is heavily used for other tasks, authentication requests might starve and setting up this executor service should be considered.The executor service and can be safely shutdown if the TokenCredential is no longer being used by the Azure SDK clients and should be shutdown before the application exits.
- Parameters:
executorService
- the executor service to use for executing authentication requests.- Returns:
- An updated instance of this builder with the executor service set as specified.
-