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

liquibase.command.LiquibaseCommand Maven / Gradle / Ivy

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

import liquibase.plugin.Plugin;

import java.util.SortedSet;

/**
 * @deprecated Define command with the new {@link CommandStep} interface
 */
public interface LiquibaseCommand extends Plugin {

    String getName();

    int getPriority(String commandName);

    SortedSet getArguments();

    CommandValidationErrors validate();

    /**
     * Function that performs the actual logic. This should not be called directly by any code,
     * only by {@link CommandFactory#execute(LiquibaseCommand)}
     */
    T run() throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy