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

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

There is a newer version: 1.16.0-beta.1
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.identity;

import com.azure.core.util.CoreUtils;
import com.azure.core.util.logging.ClientLogger;
import com.azure.identity.implementation.util.IdentityUtil;
import com.azure.identity.implementation.util.ValidationUtil;

import java.util.Arrays;
import java.util.List;

/**
 * Fluent credential builder for instantiating a {@link IntelliJCredential}.
 *
 * @see IntelliJCredential
 */
public class IntelliJCredentialBuilder extends CredentialBuilderBase {
    private static final ClientLogger LOGGER = new ClientLogger(IntelliJCredentialBuilder.class);

    private String tenantId;

    /**
     * Sets the tenant id of the user to authenticate through the {@link IntelliJCredential}. The default is
     * the tenant the user originally authenticated to via the Azure Toolkit for IntelliJ plugin.
     *
     * @param tenantId the tenant ID to set.
     * @return An updated instance of this builder with the tenant id set as specified.
     */
    public IntelliJCredentialBuilder tenantId(String tenantId) {
        ValidationUtil.validateTenantIdCharacterRange(tenantId, LOGGER);
        this.tenantId = tenantId;
        return this;
    }

    /**
     * Specifies the KeePass database path to read the cached credentials of Azure toolkit for IntelliJ plugin.
     * The {@code databasePath} is required on Windows platform. For macOS and Linux platform native key chain /
     * key ring will be accessed respectively to retrieve the cached credentials.
     *
     * 

This path can be located in the IntelliJ IDE. * Windows: File -> Settings -> Appearance & Behavior -> System Settings -> Passwords.

* * @param databasePath the path to the KeePass database. * @throws IllegalArgumentException if {@code databasePath} is either not specified or is empty. * @return An updated instance of this builder with the KeePass database path set as specified. */ public IntelliJCredentialBuilder keePassDatabasePath(String databasePath) { if (CoreUtils.isNullOrEmpty(databasePath)) { throw LOGGER.logExceptionAsError( new IllegalArgumentException("The KeePass database path is either empty or not configured." + " Please configure it on the builder.")); } this.identityClientOptions.setIntelliJKeePassDatabasePath(databasePath); return this; } /** * Specifies tenants in addition to the specified tenantId for which the credential may acquire tokens. * Add the wildcard value "*" to allow the credential to acquire tokens for any tenant the logged in account can access. * If no value is specified for tenantId this option will have no effect, and the credential will acquire tokens * for any requested tenant. * * @param additionallyAllowedTenants the additionally allowed tenants. * @return An updated instance of this builder with the additional tenants configured. */ public IntelliJCredentialBuilder additionallyAllowedTenants(String... additionallyAllowedTenants) { identityClientOptions .setAdditionallyAllowedTenants(IdentityUtil.resolveAdditionalTenants(Arrays.asList(additionallyAllowedTenants))); return this; } /** * Specifies tenants in addition to the specified tenantId for which the credential may acquire tokens. * Add the wildcard value "*" to allow the credential to acquire tokens for any tenant the logged in account can access. * If no value is specified for tenantId this option will have no effect, and the credential will acquire tokens * for any requested tenant. * * @param additionallyAllowedTenants the additionally allowed tenants. * @return An updated instance of this builder with the additional tenants configured. */ public IntelliJCredentialBuilder additionallyAllowedTenants(List additionallyAllowedTenants) { identityClientOptions.setAdditionallyAllowedTenants(IdentityUtil.resolveAdditionalTenants(additionallyAllowedTenants)); return this; } /** * Creates a new {@link IntelliJCredential} with the current configurations. * * @return a {@link IntelliJCredential} with the current configurations. */ public IntelliJCredential build() { return new IntelliJCredential(tenantId, identityClientOptions); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy