Package liquibase.command.core
Class InternalSnapshotCommandStep
- java.lang.Object
-
- liquibase.command.AbstractCommandStep
-
- liquibase.command.core.InternalSnapshotCommandStep
-
- All Implemented Interfaces:
CommandStep
public class InternalSnapshotCommandStep extends AbstractCommandStep
-
-
Field Summary
Fields Modifier and Type Field Description static String[]COMMAND_NAMEstatic CommandArgumentDefinition<Database>DATABASE_ARGstatic CommandArgumentDefinition<CatalogAndSchema[]>SCHEMAS_ARGstatic CommandArgumentDefinition<String>SERIALIZER_FORMAT_ARGstatic CommandArgumentDefinition<SnapshotControl>SNAPSHOT_CONTROL_ARGstatic CommandArgumentDefinition<SnapshotListener>SNAPSHOT_LISTENER_ARG-
Fields inherited from class liquibase.command.AbstractCommandStep
coreBundle
-
Fields inherited from interface liquibase.command.CommandStep
ORDER_DEFAULT, ORDER_NOT_APPLICABLE
-
-
Constructor Summary
Constructors Constructor Description InternalSnapshotCommandStep()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadjustCommandDefinition(CommandDefinition commandDefinition)Default implementation makes no changesString[][]defineCommandNames()Defines new command names For example, if it is part of `liquibase update`, this should return new String[][]{ new String[] {"update"}}.Map<String,Object>getSnapshotMetadata()static voidlogUnsupportedDatabase(Database database, Class callingClass)static CatalogAndSchema[]parseSchemas(Database database, String... schemas)static StringprintSnapshot(CommandScope commandScope, CommandResults snapshotResults)voidrun(CommandResultsBuilder resultsBuilder)Performs the business logic.voidsetSnapshotMetadata(Map<String,Object> snapshotMetadata)-
Methods inherited from class liquibase.command.AbstractCommandStep
getOrder, providedDependencies, requiredDependencies, validate
-
-
-
-
Field Detail
-
COMMAND_NAME
public static final String[] COMMAND_NAME
-
DATABASE_ARG
public static final CommandArgumentDefinition<Database> DATABASE_ARG
-
SCHEMAS_ARG
public static final CommandArgumentDefinition<CatalogAndSchema[]> SCHEMAS_ARG
-
SERIALIZER_FORMAT_ARG
public static final CommandArgumentDefinition<String> SERIALIZER_FORMAT_ARG
-
SNAPSHOT_LISTENER_ARG
public static final CommandArgumentDefinition<SnapshotListener> SNAPSHOT_LISTENER_ARG
-
SNAPSHOT_CONTROL_ARG
public static final CommandArgumentDefinition<SnapshotControl> SNAPSHOT_CONTROL_ARG
-
-
Method Detail
-
defineCommandNames
public String[][] defineCommandNames()
Description copied from interface:CommandStepDefines new command names For example, if it is part of `liquibase update`, this should return new String[][]{ new String[] {"update"}}. If it is a part of `liquibase example init`, this should return {"example", "init"}.This is used to determine the available command names.
This can return null if this step is not defining a new command but "cross-cutting" existing commands
-
adjustCommandDefinition
public void adjustCommandDefinition(CommandDefinition commandDefinition)
Description copied from class:AbstractCommandStepDefault implementation makes no changes- Specified by:
adjustCommandDefinitionin interfaceCommandStep- Overrides:
adjustCommandDefinitionin classAbstractCommandStep
-
parseSchemas
public static CatalogAndSchema[] parseSchemas(Database database, String... schemas)
-
run
public void run(CommandResultsBuilder resultsBuilder) throws Exception
Description copied from interface:CommandStepPerforms the business logic. This method should not be called directly. It is called by the overall pipeline logic in theCommandScope.execute()order.- Throws:
Exception
-
printSnapshot
public static String printSnapshot(CommandScope commandScope, CommandResults snapshotResults) throws LiquibaseException
- Throws:
LiquibaseException
-
-