Package io.ebean.config
Interface EncryptKeyManager
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface EncryptKeyManager
Determine keys used for encryption and decryption.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description EncryptKey
getEncryptKey(String tableName, String columnName)
Return the key used to encrypt and decrypt a property mapping to the given table and column.default void
initialise()
Initialise the EncryptKeyManager.
-
-
-
Method Detail
-
initialise
default void initialise()
Initialise the EncryptKeyManager.This gives the EncryptKeyManager the opportunity to get keys etc.
-
getEncryptKey
EncryptKey getEncryptKey(String tableName, String columnName)
Return the key used to encrypt and decrypt a property mapping to the given table and column.
-
-