Files
ebean/src/main/java/io/ebean/config/EncryptKey.java
T
Roland PramlandRob Bygrave a315c7c11e More small fixes (#977)
* 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
2017-02-24 08:42:27 +13:00

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();
}