com.azure.spring.cloud.config.KeyVaultSecretProvider Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.spring.cloud.config;
/**
* Interface to be implemented that enables returning of Secrets instead of requesting them from Azure Key Vaults.
*/
public interface KeyVaultSecretProvider {
/**
* Returns a secret value for a given uri
* @param uri Key Vault Reference
* @return String value of the secret
*/
String getSecret(String uri);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy