Package liquibase.command.core
Class GenerateChangeLogCommand
- java.lang.Object
-
- liquibase.command.AbstractCommand<CommandResult>
-
- liquibase.command.core.DiffCommand
-
- liquibase.command.core.DiffToChangeLogCommand
-
- liquibase.command.core.GenerateChangeLogCommand
-
- All Implemented Interfaces:
LiquibaseCommand<CommandResult>,Plugin
public class GenerateChangeLogCommand extends DiffToChangeLogCommand
Deprecated.Implement commands withCommandStepand call them withCommandFactory.getCommandDefinition(String...).
-
-
Field Summary
-
Fields inherited from interface liquibase.plugin.Plugin
PRIORITY_DATABASE, PRIORITY_DEFAULT, PRIORITY_NOT_APPLICABLE, PRIORITY_SPECIALIZED
-
-
Constructor Summary
Constructors Constructor Description GenerateChangeLogCommand()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringgetAuthor()Deprecated.StringgetContext()Deprecated.StringgetName()Deprecated.CommandResultrun()Deprecated.Function that performs the actual logic.GenerateChangeLogCommandsetAuthor(String author)Deprecated.GenerateChangeLogCommandsetContext(String context)Deprecated.-
Methods inherited from class liquibase.command.core.DiffToChangeLogCommand
getChangeLogFile, getDiffOutputControl, getOutputStream, setChangeLogFile, setDiffOutputControl, setOutputStream
-
Methods inherited from class liquibase.command.core.DiffCommand
getCompareControl, getObjectChangeFilter, getReferenceDatabase, getReferenceSnapshotControl, getSnapshotListener, getSnapshotTypes, getTargetDatabase, getTargetSnapshotControl, setCompareControl, setObjectChangeFilter, setReferenceDatabase, setReferenceSnapshotControl, setSnapshotListener, setSnapshotTypes, setSnapshotTypes, setTargetDatabase, setTargetSnapshotControl, validate
-
Methods inherited from class liquibase.command.AbstractCommand
getArguments, getPriority
-
-
-
-
Method Detail
-
getName
public String getName()
Deprecated.- Specified by:
getNamein interfaceLiquibaseCommand<CommandResult>- Overrides:
getNamein classDiffToChangeLogCommand
-
getAuthor
public String getAuthor()
Deprecated.
-
setAuthor
public GenerateChangeLogCommand setAuthor(String author)
Deprecated.
-
getContext
public String getContext()
Deprecated.
-
setContext
public GenerateChangeLogCommand setContext(String context)
Deprecated.
-
run
public CommandResult run() throws Exception
Deprecated.Description copied from interface:LiquibaseCommandFunction that performs the actual logic. This should not be called directly by any code, only byCommandFactory.execute(LiquibaseCommand)- Specified by:
runin interfaceLiquibaseCommand<CommandResult>- Overrides:
runin classDiffToChangeLogCommand- Throws:
Exception
-
-