mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
19 lines
470 B
Java
19 lines
470 B
Java
package io.ebean.config;
|
|
|
|
/**
|
|
* Used to provide some automatic configuration early in the creation of an EbeanServer.
|
|
*/
|
|
public interface AutoConfigure {
|
|
|
|
/**
|
|
* Perform configuration for the ServerConfig prior to properties load.
|
|
*/
|
|
void preConfigure(ServerConfig serverConfig);
|
|
|
|
/**
|
|
* Provide some configuration the ServerConfig prior to server creation but after properties have been applied.
|
|
*/
|
|
void postConfigure(ServerConfig serverConfig);
|
|
|
|
}
|