All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebean.config.AutoConfigure Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebean.config;

import io.ebean.DatabaseBuilder;

/**
 * Used to provide some automatic configuration early in the creation of a Database.
 */
public interface AutoConfigure {

  /**
   * Perform configuration for the DatabaseConfig prior to properties load.
   */
  void preConfigure(DatabaseBuilder config);

  /**
   * Provide some configuration the DatabaseConfig prior to server creation but after properties have been applied.
   */
  void postConfigure(DatabaseBuilder config);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy