Package liquibase.command
Interface LiquibaseCommand<T extends CommandResult>
- All Superinterfaces:
Plugin
- All Known Implementing Classes:
AbstractCommand
,DiffCommand
,DiffToChangeLogCommand
,GenerateChangeLogCommand
,HistoryCommand
,SnapshotCommand
Deprecated.
-
Field Summary
Fields inherited from interface liquibase.plugin.Plugin
PRIORITY_DATABASE, PRIORITY_DEFAULT, PRIORITY_NOT_APPLICABLE, PRIORITY_SPECIALIZED
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated.getName()
Deprecated.int
getPriority
(String commandName) Deprecated.run()
Deprecated.Function that performs the actual logic.validate()
Deprecated.
-
Method Details
-
getName
String getName()Deprecated. -
getPriority
Deprecated. -
getArguments
SortedSet<CommandArgument> getArguments()Deprecated. -
validate
CommandValidationErrors validate()Deprecated. -
run
Deprecated.Function that performs the actual logic. This should not be called directly by any code, only byCommandFactory.execute(LiquibaseCommand)
- Throws:
Exception
-
CommandStep
interface