001package io.ebean.config;
002
003/**
004 * Programmatically define which database columns are encrypted.
005 */
006@FunctionalInterface
007public interface EncryptDeployManager {
008
009  /**
010   * Return true if the table column is encrypted.
011   */
012  EncryptDeploy getEncryptDeploy(TableName table, String column);
013}