Package com.avaje.ebean.config

Examples of com.avaje.ebean.config.Encryptor


    this.namingConvention = serverConfig.getNamingConvention();
        this.dbPlatform = serverConfig.getDatabasePlatform();
        this.encryptDeployManager = serverConfig.getEncryptDeployManager();
        this.encryptKeyManager = serverConfig.getEncryptKeyManager();
       
        Encryptor be = serverConfig.getEncryptor();
        this.bytesEncryptor = be != null ? be : new SimpleAesEncryptor();
   
    // this alias is used for ManyToMany lazy loading queries
    this.manyToManyAlias = "zzzzzz";
  }
View Full Code Here

TOP

Related Classes of com.avaje.ebean.config.Encryptor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.