Interface CredentialBundlesConfiguration
- All Known Implementing Classes:
CredentialBundlesConfigurationProperties
,SpringCredentialBundlesConfigurationProperties
public interface CredentialBundlesConfiguration
Configuration interface for bundles of credentials and key stores.
Note: If both PEM configuration and JKS (Java Key Store) is used, the ID:s used must be unique for all credentials (i.e., both those configured using PEM-format and those configured using key store formats).
- Author:
- Martin Lindström
-
Method Details
-
keystore
Optional<Map<String,StoreConfiguration>> keystore()Gets the map of key store ID:s and key store configurations.- Returns:
- a map of key store ID:s and key store configurations
-
pem
Optional<Map<String,PemCredentialConfiguration>> pem()Gets the map of credential ID:s and PEM based credential configurations.- Returns:
- a map of credential ID:s and PEM-based credential configurations
-
jks
Gets the map of credential ID:s and key store based credential configurations.- Returns:
- a map of credential ID:s and key store based credential configurations
-