Package io.ebean.config.dbplatform
Class AbstractDbEncrypt
- java.lang.Object
-
- io.ebean.config.dbplatform.AbstractDbEncrypt
-
- All Implemented Interfaces:
DbEncrypt
- Direct Known Subclasses:
H2DbEncrypt
,MySqlDbEncrypt
,OracleDbEncrypt
,PostgresDbEncrypt
public abstract class AbstractDbEncrypt extends Object implements DbEncrypt
Base type for DB platform specific Encryption.DB specific classes that extend this need to set their specific encryption functions for varchar, date and timestamp. If they are left null then that is treated as though that data type can not be encrypted in the DB and will instead use java client encryption.
- Author:
- rbygrave
-
-
Constructor Summary
Constructors Constructor Description AbstractDbEncrypt()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DbEncryptFunction
getDbEncryptFunction(int jdbcType)
Return the DB encryption function for the given JDBC type.int
getEncryptDbType()
Return the DB stored type for encrypted properties.boolean
isBindEncryptDataFirst()
Generally encrypt function binding the data before the key (except h2).
-
-
-
Constructor Detail
-
AbstractDbEncrypt
public AbstractDbEncrypt()
-
-
Method Detail
-
getDbEncryptFunction
public DbEncryptFunction getDbEncryptFunction(int jdbcType)
Return the DB encryption function for the given JDBC type.Null is returned if DB encryption of the type is not supported.
- Specified by:
getDbEncryptFunction
in interfaceDbEncrypt
-
getEncryptDbType
public int getEncryptDbType()
Return the DB stored type for encrypted properties.- Specified by:
getEncryptDbType
in interfaceDbEncrypt
-
isBindEncryptDataFirst
public boolean isBindEncryptDataFirst()
Generally encrypt function binding the data before the key (except h2).- Specified by:
isBindEncryptDataFirst
in interfaceDbEncrypt
-
-