|
|
|
|
@ -31,6 +31,17 @@ public interface Bootstrapper {
@@ -31,6 +31,17 @@ public interface Bootstrapper {
|
|
|
|
|
* Initialize the given {@link BootstrapRegistry} with any required registrations. |
|
|
|
|
* @param registry the registry to initialize |
|
|
|
|
*/ |
|
|
|
|
default void initialize(BootstrapRegistry registry) { |
|
|
|
|
intitialize(registry); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Initialize the given {@link BootstrapRegistry} with any required registrations. |
|
|
|
|
* @param registry the registry to initialize |
|
|
|
|
* @deprecated since 2.4.4 in favor of |
|
|
|
|
* {@link Bootstrapper#initialize(BootstrapRegistry)} |
|
|
|
|
*/ |
|
|
|
|
@Deprecated |
|
|
|
|
void intitialize(BootstrapRegistry registry); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|