Package io.ebean.config
Interface AutoConfigure
-
public interface AutoConfigure
Used to provide some automatic configuration early in the creation of a Database.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
postConfigure(DatabaseConfig config)
Provide some configuration the DatabaseConfig prior to server creation but after properties have been applied.void
preConfigure(DatabaseConfig config)
Perform configuration for the DatabaseConfig prior to properties load.
-
-
-
Method Detail
-
preConfigure
void preConfigure(DatabaseConfig config)
Perform configuration for the DatabaseConfig prior to properties load.
-
postConfigure
void postConfigure(DatabaseConfig config)
Provide some configuration the DatabaseConfig prior to server creation but after properties have been applied.
-
-