Uses of Class
liquibase.snapshot.SnapshotControl
-
Packages that use SnapshotControl Package Description liquibase.command.core liquibase.database liquibase.diff liquibase.snapshot -
-
Uses of SnapshotControl in liquibase.command.core
Fields in liquibase.command.core with type parameters of type SnapshotControl Modifier and Type Field Description static CommandArgumentDefinition<SnapshotControl>DiffCommandStep. REFERENCE_SNAPSHOT_CONTROL_ARGstatic CommandArgumentDefinition<SnapshotControl>InternalSnapshotCommandStep. SNAPSHOT_CONTROL_ARGstatic CommandArgumentDefinition<SnapshotControl>SnapshotCommandStep. SNAPSHOT_CONTROL_ARGstatic CommandArgumentDefinition<SnapshotControl>SnapshotReferenceCommandStep. SNAPSHOT_CONTROL_ARGstatic CommandArgumentDefinition<SnapshotControl>DiffCommandStep. TARGET_SNAPSHOT_CONTROL_ARGMethods in liquibase.command.core that return SnapshotControl Modifier and Type Method Description protected SnapshotControlSnapshotCommandStep. createSnapshotControl(CommandScope commandScope, Database database)protected SnapshotControlSnapshotReferenceCommandStep. createSnapshotControl(CommandScope commandScope, Database database)SnapshotControlDiffCommand. getReferenceSnapshotControl()Deprecated.SnapshotControlDropAllCommandStep. getSnapshotControl(CommandScope commandScope, Database database)SnapshotControlDiffCommand. getTargetSnapshotControl()Deprecated.Methods in liquibase.command.core with parameters of type SnapshotControl Modifier and Type Method Description DiffCommandDiffCommand. setReferenceSnapshotControl(SnapshotControl referenceSnapshotControl)Deprecated.DiffCommandDiffCommand. setTargetSnapshotControl(SnapshotControl targetSnapshotControl)Deprecated. -
Uses of SnapshotControl in liquibase.database
Methods in liquibase.database with parameters of type SnapshotControl Modifier and Type Method Description default voidDatabase. dropDatabaseObjects(CatalogAndSchema schemaToDrop, SnapshotControl snapshotControl) -
Uses of SnapshotControl in liquibase.diff
Methods in liquibase.diff with parameters of type SnapshotControl Modifier and Type Method Description DiffResultDiffGeneratorFactory. compare(Database referenceDatabase, Database comparisonDatabase, SnapshotControl referenceSnapshotControl, SnapshotControl comparisonSnapshotControl, CompareControl compareControl) -
Uses of SnapshotControl in liquibase.snapshot
Methods in liquibase.snapshot that return SnapshotControl Modifier and Type Method Description SnapshotControlDatabaseSnapshot. getSnapshotControl()SnapshotControlSnapshotControl. setWarnIfObjectNotFound(boolean warnIfObjectNotFound)Configures the code to log a LogLevel.WARNING message if the object to be snapshotted could not be found.Methods in liquibase.snapshot with parameters of type SnapshotControl Modifier and Type Method Description DatabaseSnapshotSnapshotGeneratorFactory. createSnapshot(CatalogAndSchema[] examples, Database database, SnapshotControl snapshotControl)Creates a database snapshot for a given array of catalog/schema combinations.DatabaseSnapshotSnapshotGeneratorFactory. createSnapshot(CatalogAndSchema example, Database database, SnapshotControl snapshotControl)DatabaseSnapshotSnapshotGeneratorFactory. createSnapshot(DatabaseObject[] examples, Database database, SnapshotControl snapshotControl)Creates a database snapshot for a given array of DatabaseObjects<T extends DatabaseObject>
TSnapshotGeneratorFactory. createSnapshot(T example, Database database, SnapshotControl snapshotControl)Creates a DatabaseSnapshot for a single DatabaseObject.TableSnapshotGeneratorFactory. getDatabaseChangeLogTable(SnapshotControl snapshotControl, Database database)Constructors in liquibase.snapshot with parameters of type SnapshotControl Constructor Description EmptyDatabaseSnapshot(Database database, SnapshotControl snapshotControl)JdbcDatabaseSnapshot(DatabaseObject[] examples, Database database, SnapshotControl snapshotControl)
-