Class BaseJdbcMigration
- java.lang.Object
-
- org.flywaydb.core.api.migration.jdbc.BaseJdbcMigration
-
- All Implemented Interfaces:
ConfigurationAware,JdbcMigration
@Deprecated public abstract class BaseJdbcMigration extends Object implements JdbcMigration, ConfigurationAware
Deprecated.Extend JavaMigration or BaseJavaMigration instead. Will be removed in Flyway 6.0.Convenience implementation ifJdbcMigration.ConfigurationAware.setFlywayConfiguration(FlywayConfiguration)is implemented by storing the configuration in a field. It is encouraged to subclass this class instead of implementing JdbcMigration directly, to guard against possible API additions in future major releases of Flyway.
-
-
Field Summary
Fields Modifier and Type Field Description protected FlywayConfigurationflywayConfigurationDeprecated.
-
Constructor Summary
Constructors Constructor Description BaseJdbcMigration()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidsetFlywayConfiguration(FlywayConfiguration flywayConfiguration)Deprecated.Sets the current configuration.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.flywaydb.core.api.migration.jdbc.JdbcMigration
migrate
-
-
-
-
Field Detail
-
flywayConfiguration
protected FlywayConfiguration flywayConfiguration
Deprecated.
-
-
Method Detail
-
setFlywayConfiguration
public void setFlywayConfiguration(FlywayConfiguration flywayConfiguration)
Deprecated.Description copied from interface:ConfigurationAwareSets the current configuration. This method should not be called directly, it is called by Flyway itself.- Specified by:
setFlywayConfigurationin interfaceConfigurationAware- Parameters:
flywayConfiguration- The current Flyway configuration.
-
-