All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebean.config.dbplatform.DbEncryptFunction Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
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