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