Uses of Class
liquibase.snapshot.SnapshotControl
Packages that use SnapshotControl
-
Uses of SnapshotControl in liquibase.command.core
Fields in liquibase.command.core with type parameters of type SnapshotControlModifier and TypeFieldDescriptionstatic final CommandArgumentDefinition<SnapshotControl>DiffCommandStep.REFERENCE_SNAPSHOT_CONTROL_ARGstatic final CommandArgumentDefinition<SnapshotControl>InternalSnapshotCommandStep.SNAPSHOT_CONTROL_ARGstatic final CommandArgumentDefinition<SnapshotControl>SnapshotCommandStep.SNAPSHOT_CONTROL_ARGstatic final CommandArgumentDefinition<SnapshotControl>SnapshotReferenceCommandStep.SNAPSHOT_CONTROL_ARGstatic final CommandArgumentDefinition<SnapshotControl>DiffCommandStep.TARGET_SNAPSHOT_CONTROL_ARGMethods in liquibase.command.core that return SnapshotControlModifier and TypeMethodDescriptionprotected SnapshotControlSnapshotCommandStep.createSnapshotControl(CommandScope commandScope, Database database) protected SnapshotControlSnapshotReferenceCommandStep.createSnapshotControl(CommandScope commandScope, Database database) DiffCommand.getReferenceSnapshotControl()Deprecated.DropAllCommandStep.getSnapshotControl(CommandScope commandScope, Database database) DiffCommand.getTargetSnapshotControl()Deprecated.Methods in liquibase.command.core with parameters of type SnapshotControlModifier and TypeMethodDescriptionDiffCommand.setReferenceSnapshotControl(SnapshotControl referenceSnapshotControl) Deprecated.DiffCommand.setTargetSnapshotControl(SnapshotControl targetSnapshotControl) Deprecated. -
Uses of SnapshotControl in liquibase.database
Methods in liquibase.database with parameters of type SnapshotControlModifier and TypeMethodDescriptiondefault voidDatabase.dropDatabaseObjects(CatalogAndSchema schemaToDrop, SnapshotControl snapshotControl) -
Uses of SnapshotControl in liquibase.diff
Methods in liquibase.diff with parameters of type SnapshotControlModifier and TypeMethodDescriptionDiffGeneratorFactory.compare(Database referenceDatabase, Database comparisonDatabase, SnapshotControl referenceSnapshotControl, SnapshotControl comparisonSnapshotControl, CompareControl compareControl) -
Uses of SnapshotControl in liquibase.snapshot
Methods in liquibase.snapshot that return SnapshotControlModifier and TypeMethodDescriptionDatabaseSnapshot.getSnapshotControl()SnapshotControl.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 SnapshotControlModifier and TypeMethodDescriptionSnapshotGeneratorFactory.createSnapshot(CatalogAndSchema[] examples, Database database, SnapshotControl snapshotControl) Creates a database snapshot for a given array of catalog/schema combinations.SnapshotGeneratorFactory.createSnapshot(CatalogAndSchema example, Database database, SnapshotControl snapshotControl) SnapshotGeneratorFactory.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.SnapshotGeneratorFactory.getDatabaseChangeLogTable(SnapshotControl snapshotControl, Database database) Constructors in liquibase.snapshot with parameters of type SnapshotControlModifierConstructorDescriptionEmptyDatabaseSnapshot(Database database, SnapshotControl snapshotControl) JdbcDatabaseSnapshot(DatabaseObject[] examples, Database database, SnapshotControl snapshotControl)