com.avaje.ebean.config.EncryptKey Maven / Gradle / Ivy
package com.avaje.ebean.config;
/**
* Represents the key used for encryption.
*
* For simple cases this often represent a simple String key but depending on
* the encryption method this could contain other details.
*
*
* @author rbygrave
*/
public interface EncryptKey {
/**
* Return the string key value.
*/
String getStringValue();
}