mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
* no effecitve code change: add @FunctionalInterface to designated interfaces * no effective code change: removed obsolete imports * no effective code change: removed obsolete @SuppressWarnings * no effective code change: add @SuppressWarnings to UUID_PLACEHOLDER
17 lines
348 B
Java
17 lines
348 B
Java
package io.ebean.config;
|
|
|
|
/**
|
|
* Represents the key used for encryption.
|
|
* <p>
|
|
* For simple cases this often represent a simple String key but depending on
|
|
* the encryption method this could contain other details.
|
|
*/
|
|
@FunctionalInterface
|
|
public interface EncryptKey {
|
|
|
|
/**
|
|
* Return the string key value.
|
|
*/
|
|
String getStringValue();
|
|
}
|