liquibase.command.core.DiffCommandStep Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
package liquibase.command.core;
import liquibase.command.*;
import liquibase.configuration.ConfigurationValueObfuscator;
import liquibase.exception.CommandExecutionException;
import java.util.Arrays;
public class DiffCommandStep extends AbstractCliWrapperCommandStep {
public static final String[] COMMAND_NAME = {"diff"};
public static final CommandArgumentDefinition REFERENCE_USERNAME_ARG;
public static final CommandArgumentDefinition REFERENCE_PASSWORD_ARG;
public static final CommandArgumentDefinition REFERENCE_URL_ARG;
public static final CommandArgumentDefinition USERNAME_ARG;
public static final CommandArgumentDefinition PASSWORD_ARG;
public static final CommandArgumentDefinition URL_ARG;
public static final CommandArgumentDefinition EXCLUDE_OBJECTS_ARG;
public static final CommandArgumentDefinition INCLUDE_OBJECTS_ARG;
public static final CommandArgumentDefinition SCHEMAS_ARG;
public static final CommandArgumentDefinition DIFF_TYPES_ARG;
public static final CommandArgumentDefinition DRIVER_ARG;
public static final CommandArgumentDefinition DRIVER_PROPERTIES_FILE_ARG;
static {
CommandBuilder builder = new CommandBuilder(COMMAND_NAME);
REFERENCE_URL_ARG = builder.argument("referenceUrl", String.class).required()
.description("The JDBC reference database connection URL").build();
REFERENCE_USERNAME_ARG = builder.argument("referenceUsername", String.class)
.description("The reference database username").build();
REFERENCE_PASSWORD_ARG = builder.argument("referencePassword", String.class)
.description("The reference database password")
.setValueObfuscator(ConfigurationValueObfuscator.STANDARD)
.build();
URL_ARG = builder.argument(CommonArgumentNames.URL, String.class).required()
.description("The JDBC target database connection URL").build();
USERNAME_ARG = builder.argument(CommonArgumentNames.USERNAME, String.class)
.description("The target database username").build();
PASSWORD_ARG = builder.argument(CommonArgumentNames.PASSWORD, String.class)
.description("The target database password")
.setValueObfuscator(ConfigurationValueObfuscator.STANDARD)
.build();
DRIVER_ARG = builder.argument("driver", String.class)
.description("The JDBC driver class").build();
DRIVER_PROPERTIES_FILE_ARG = builder.argument("driverPropertiesFile", String.class)
.description("The JDBC driver properties file").build();
EXCLUDE_OBJECTS_ARG = builder.argument("excludeObjects", String.class)
.description("Objects to exclude from diff").build();
INCLUDE_OBJECTS_ARG = builder.argument("includeObjects", String.class)
.description("Objects to include in diff").build();
SCHEMAS_ARG = builder.argument("schemas", String.class)
.description("Schemas to include in diff").build();
DIFF_TYPES_ARG = builder.argument("diffTypes", String.class)
.description("Types of objects to compare").build();
}
@Override
public String[][] defineCommandNames() {
return new String[][] { COMMAND_NAME };
}
@Override
protected String[] collectArguments(CommandScope commandScope) throws CommandExecutionException {
return collectArguments(commandScope, Arrays.asList("format", EXCLUDE_OBJECTS_ARG.getName(), INCLUDE_OBJECTS_ARG.getName()), null);
}
@Override
public void adjustCommandDefinition(CommandDefinition commandDefinition) {
commandDefinition.setShortDescription("Compare two databases");
}
}