Tabnine Logo
DatabasePlatform.getDbEncrypt
Code IndexAdd Tabnine to your IDE (free)

How to use
getDbEncrypt
method
in
com.avaje.ebean.config.dbplatform.DatabasePlatform

Best Java code snippets using com.avaje.ebean.config.dbplatform.DatabasePlatform.getDbEncrypt (Showing top 6 results out of 315)

origin: org.avaje.ebean/ebean

public MetaFactory(DatabasePlatform dbPlatform) {
 this.dbPlatform = dbPlatform;
 this.emptyStringAsNull = dbPlatform.isTreatEmptyStringsAsNull();
 // to bind encryption data before or after the encryption key
 DbEncrypt dbEncrypt = dbPlatform.getDbEncrypt();
 boolean bindEncryptDataFirst = dbEncrypt == null || dbEncrypt.isBindEncryptDataFirst();
 this.baseFact = new FactoryBaseProperties(bindEncryptDataFirst);
 this.embeddedFact = new FactoryEmbedded(bindEncryptDataFirst);
}
origin: org.avaje.ebeanorm/avaje-ebeanorm-server

public MetaFactory(DatabasePlatform dbPlatform) {
 this.dbPlatform = dbPlatform;
 this.emptyStringAsNull = dbPlatform.isTreatEmptyStringsAsNull();
 // to bind encryption data before or after the encryption key
 DbEncrypt dbEncrypt = dbPlatform.getDbEncrypt();
 boolean bindEncryptDataFirst = dbEncrypt == null ? true : dbEncrypt.isBindEncryptDataFirst();
 this.baseFact = new FactoryBaseProperties(bindEncryptDataFirst);
 this.embeddedFact = new FactoryEmbedded(bindEncryptDataFirst);
}
origin: org.avaje/ebean

public MetaFactory(DatabasePlatform dbPlatform) {
 this.dbPlatform = dbPlatform;
 this.emptyStringAsNull = dbPlatform.isTreatEmptyStringsAsNull();
 // to bind encryption data before or after the encryption key
 DbEncrypt dbEncrypt = dbPlatform.getDbEncrypt();
 boolean bindEncryptDataFirst = dbEncrypt == null ? true : dbEncrypt.isBindEncryptDataFirst();
 this.baseFact = new FactoryBaseProperties(bindEncryptDataFirst);
 this.embeddedFact = new FactoryEmbedded(bindEncryptDataFirst);
}
origin: org.avaje/ebean

DbEncrypt dbEncrypt = util.getDbPlatform().getDbEncrypt();
origin: org.avaje.ebean/ebean

DbEncrypt dbEncrypt = util.getDbPlatform().getDbEncrypt();
origin: org.avaje.ebeanorm/avaje-ebeanorm-server

DbEncrypt dbEncrypt = util.getDbPlatform().getDbEncrypt();
com.avaje.ebean.config.dbplatformDatabasePlatformgetDbEncrypt

Javadoc

Return the DbEncrypt handler for this DB platform.

Popular methods of DatabasePlatform

  • completeSql
  • convertQuotedIdentifiers
    Convert backticks to the platform specific open quote and close quote Specific plugins may implement
  • getCloseQuote
    Return the close quote for quoted identifiers.
  • getDbDdlSyntax
    Return the DDL syntax for this platform.
  • getOpenQuote
    Return the open quote for quoted identifiers.
  • <init>
    Instantiates a new database platform.
  • createSequenceIdGenerator
    Return a DB Sequence based IdGenerator.
  • getBlobDbType
    Return the data type that should be used for Blob. This is typically Types.BLOB but for Postgres is
  • getBooleanDbType
    Return the JDBC type used to store booleans.
  • getClobDbType
    Return the data type that should be used for Clob. This is typically Types.CLOB but for Postgres is
  • getDbIdentity
    Return the DB identity/sequence features for this platform.
  • getDbTypeMap
    Return the mapping of JDBC to DB types.
  • getDbIdentity,
  • getDbTypeMap,
  • getName,
  • getSqlLimiter,
  • isIdInExpandedForm,
  • isSelectCountWithAlias,
  • isTreatEmptyStringsAsNull,
  • setDbEncrypt,
  • withForUpdate

Popular in Java

  • Making http post requests using okhttp
  • setScale (BigDecimal)
  • setContentView (Activity)
  • onCreateOptionsMenu (Activity)
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now