Interface ConfigurationAware
-
- All Known Implementing Classes:
BaseFlywayCallback,BaseJdbcMigration,BaseMigrationResolver,BaseSpringJdbcMigration
@Deprecated public interface ConfigurationAware
Deprecated.Will be removed in Flyway 6.0.Marks a class as configuration aware (executors, resolvers and migrations). Configuration aware classes get the Flyway master configuration injected upon creation. The implementer is responsible for correctly storing the providedFlywayConfiguration(usually in a field).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidsetFlywayConfiguration(FlywayConfiguration flywayConfiguration)Deprecated.Sets the current configuration.
-
-
-
Method Detail
-
setFlywayConfiguration
void setFlywayConfiguration(FlywayConfiguration flywayConfiguration)
Deprecated.Sets the current configuration. This method should not be called directly, it is called by Flyway itself.- Parameters:
flywayConfiguration- The current Flyway configuration.
-
-