Uses of Interface
migratedb.v1.core.api.resolver.MigrationResolver
-
Packages that use MigrationResolver Package Description migratedb.v1.core.api.configuration Interfaces for MigrateDB configurationmigratedb.v1.core.internal.command Private API.migratedb.v1.core.internal.info Private API.migratedb.v1.core.internal.resolver Private API.migratedb.v1.core.internal.resolver.java Private API.migratedb.v1.core.internal.resolver.sql Private API. -
-
Uses of MigrationResolver in migratedb.v1.core.api.configuration
Methods in migratedb.v1.core.api.configuration that return types with arguments of type MigrationResolver Modifier and Type Method Description List<MigrationResolver>Configuration. getResolvers()List<MigrationResolver>DefaultConfiguration. getResolvers()List<MigrationResolver>FluentConfiguration. getResolvers()Methods in migratedb.v1.core.api.configuration with parameters of type MigrationResolver Modifier and Type Method Description FluentConfigurationFluentConfiguration. resolvers(MigrationResolver... resolvers)Sets custom MigrationResolvers to be used in addition to the built-in ones for resolving Migrations to apply.voidDefaultConfiguration. setResolvers(MigrationResolver... resolvers)Sets custom MigrationResolvers to be used in addition to the built-in ones for resolving Migrations to apply.Method parameters in migratedb.v1.core.api.configuration with type arguments of type MigrationResolver Modifier and Type Method Description FluentConfigurationFluentConfiguration. resolvers(Collection<MigrationResolver> resolvers)Sets custom MigrationResolvers to be used in addition to the built-in ones for resolving Migrations to apply.voidDefaultConfiguration. setResolvers(Collection<MigrationResolver> resolvers)Sets custom MigrationResolvers to be used in addition to the built-in ones for resolving Migrations to apply. -
Uses of MigrationResolver in migratedb.v1.core.internal.command
Constructors in migratedb.v1.core.internal.command with parameters of type MigrationResolver Constructor Description DbInfo(MigrationResolver migrationResolver, SchemaHistory schemaHistory, Configuration configuration, Database database, CallbackExecutor callbackExecutor, Schema[] schemas)DbMigrate(Database database, SchemaHistory schemaHistory, Schema schema, MigrationResolver migrationResolver, Configuration configuration, CallbackExecutor callbackExecutor)DbRepair(Database database, MigrationResolver migrationResolver, SchemaHistory schemaHistory, CallbackExecutor callbackExecutor, Configuration configuration)Creates a new DbRepair.DbValidate(Database database, SchemaHistory schemaHistory, Schema schema, MigrationResolver migrationResolver, Configuration configuration, boolean allowPending, CallbackExecutor callbackExecutor)Creates a new database validator. -
Uses of MigrationResolver in migratedb.v1.core.internal.info
Constructors in migratedb.v1.core.internal.info with parameters of type MigrationResolver Constructor Description MigrationInfoServiceImpl(MigrationResolver migrationResolver, SchemaHistory schemaHistory, Database database, Configuration configuration, TargetVersion target, List<MigrationPattern> cherryPick, ValidationContext validationContext) -
Uses of MigrationResolver in migratedb.v1.core.internal.resolver
Classes in migratedb.v1.core.internal.resolver that implement MigrationResolver Modifier and Type Class Description classDefaultMigrationResolverImplements the default MigrateDB behavior, which combines the various migration sources that can be configured.Constructor parameters in migratedb.v1.core.internal.resolver with type arguments of type MigrationResolver Constructor Description DefaultMigrationResolver(ResourceProvider resourceProvider, ClassProvider<JavaMigration> classProvider, Configuration configuration, SqlScriptExecutorFactory sqlScriptExecutorFactory, SqlScriptFactory sqlScriptFactory, ParsingContext parsingContext, Collection<MigrationResolver> customMigrationResolvers) -
Uses of MigrationResolver in migratedb.v1.core.internal.resolver.java
Classes in migratedb.v1.core.internal.resolver.java that implement MigrationResolver Modifier and Type Class Description classFixedJavaMigrationResolverMigration resolver for a fixed set of pre-instantiated Java-based migrations.classJavaMigrationResolverMigration resolver for Java-based migrations. -
Uses of MigrationResolver in migratedb.v1.core.internal.resolver.sql
Classes in migratedb.v1.core.internal.resolver.sql that implement MigrationResolver Modifier and Type Class Description classSqlMigrationResolverMigration resolver for SQL file resources.
-