Class EnvironmentCredentialBuilder

    • Constructor Detail

      • EnvironmentCredentialBuilder

        public EnvironmentCredentialBuilder()
    • Method Detail

      • authorityHost

        public EnvironmentCredentialBuilder authorityHost​(String 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.
      • executorService

        public EnvironmentCredentialBuilder executorService​(ExecutorService 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.