Package org.keycloak.vault
Interface VaultKeyResolver
-
- All Superinterfaces:
BiFunction<String,String,String>
public interface VaultKeyResolver extends BiFunction<String,String,String>
VaultKeyResolver
is aBiFunction
whose implementation of theBiFunction.apply(Object, Object)
method takes twoString
s representing the realm name and the key name (as used in${vault.key}
expressions) and returns anotherString
representing the final constructed key that is to be used when obtaining secrets from the vault. Implementations essentially define the algorithm that is to be used to combine the realm and the key to create the name that represents an entry in the vault.- Author:
- Stefan Guilhen
-
-
Method Summary
-
Methods inherited from interface java.util.function.BiFunction
andThen, apply
-
-