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

org.apache.camel.vault.AzureVaultConfiguration Maven / Gradle / Ivy

There is a newer version: 4.9.0
Show newest version
/*
 * 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.vault;

import org.apache.camel.spi.Metadata;

/**
 * Configuration for access to Azure Key Vault.
 */
public class AzureVaultConfiguration extends VaultConfiguration {

    @Metadata
    private String vaultName;
    @Metadata(secret = true)
    private String clientId;
    @Metadata(secret = true)
    private String clientSecret;
    @Metadata(secret = true)
    private String tenantId;
    @Metadata
    private boolean azureIdentityEnabled;
    @Metadata
    private boolean refreshEnabled;
    @Metadata(defaultValue = "30000")
    private long refreshPeriod = 30000;
    @Metadata
    private String secrets;
    @Metadata(secret = true)
    private String eventhubConnectionString;
    @Metadata(secret = true)
    private String blobAccessKey;
    @Metadata
    private String blobAccountName;
    @Metadata
    private String blobContainerName;

    public String getVaultName() {
        return vaultName;
    }

    /**
     * The vault Name in Azure Key Vault
     */
    public void setVaultName(String vaultName) {
        this.vaultName = vaultName;
    }

    public String getClientId() {
        return clientId;
    }

    /**
     * The client Id for accessing Azure Key Vault
     */
    public void setClientId(String clientId) {
        this.clientId = clientId;
    }

    public String getClientSecret() {
        return clientSecret;
    }

    /**
     * The client Secret for accessing Azure Key Vault
     */
    public void setClientSecret(String clientSecret) {
        this.clientSecret = clientSecret;
    }

    public String getTenantId() {
        return tenantId;
    }

    /**
     * The Tenant Id for accessing Azure Key Vault
     */
    public void setTenantId(String tenantId) {
        this.tenantId = tenantId;
    }

    public boolean isAzureIdentityEnabled() {
        return azureIdentityEnabled;
    }

    /**
     * Whether the Azure Identity Authentication should be used or not.
     */
    public void setAzureIdentityEnabled(boolean azureIdentityEnabled) {
        this.azureIdentityEnabled = azureIdentityEnabled;
    }

    public boolean isRefreshEnabled() {
        return refreshEnabled;
    }

    /**
     * Whether to automatically reload Camel upon secrets being updated in Azure.
     */
    public void setRefreshEnabled(boolean refreshEnabled) {
        this.refreshEnabled = refreshEnabled;
    }

    public long getRefreshPeriod() {
        return refreshPeriod;
    }

    /**
     * The period (millis) between checking Azure for updated secrets.
     */
    public void setRefreshPeriod(long refreshPeriod) {
        this.refreshPeriod = refreshPeriod;
    }

    public String getSecrets() {
        return secrets;
    }

    /**
     * Specify the secret names (or pattern) to check for updates. Multiple secrets can be separated by comma.
     */
    public void setSecrets(String secrets) {
        this.secrets = secrets;
    }

    public String getEventhubConnectionString() {
        return eventhubConnectionString;
    }

    /**
     * The Eventhubs connection String for Key Vault Secret events notifications
     */
    public void setEventhubConnectionString(String eventhubConnectionString) {
        this.eventhubConnectionString = eventhubConnectionString;
    }

    public String getBlobAccessKey() {
        return blobAccessKey;
    }

    /**
     * The Eventhubs Blob Access Key for CheckpointStore purpose
     */
    public void setBlobAccessKey(String blobAccessKey) {
        this.blobAccessKey = blobAccessKey;
    }

    public String getBlobAccountName() {
        return blobAccountName;
    }

    /**
     * The Eventhubs Blob Account Name for CheckpointStore purpose
     */
    public void setBlobAccountName(String blobAccountName) {
        this.blobAccountName = blobAccountName;
    }

    public String getBlobContainerName() {
        return blobContainerName;
    }

    /**
     * The Eventhubs Blob Container Name for CheckpointStore purpose
     */
    public void setBlobContainerName(String blobContainerName) {
        this.blobContainerName = blobContainerName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy