All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.command.CommonArgumentNames Maven / Gradle / Ivy

There is a newer version: 4.29.2
Show newest version
package liquibase.command;

/**
 * A common place to store commonly used command argument names.
 */
public enum CommonArgumentNames {
    USERNAME("username"),
    PASSWORD("password"),
    URL("url"),
    CHANGELOG_FILE("changelogFile");

    private final String argumentName;

    CommonArgumentNames(String argumentName) {
        this.argumentName = argumentName;
    }

    public String getArgumentName() {
        return argumentName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy