io.ebean.config.dbplatform.DbEncryptFunction Maven / Gradle / Ivy
package io.ebean.config.dbplatform;
public interface DbEncryptFunction {
/**
* Return the SQL for decrypting a column returning a VARCHAR.
*/
String getDecryptSql(String columnWithTableAlias);
/**
* Return the DB function with bind variables used to encrypt a VARCHAR value.
*/
String getEncryptBindSql();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy