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

liquibase.change.ChangeWithColumns Maven / Gradle / Ivy

There is a newer version: 4.30.0
Show newest version
package liquibase.change;

import java.util.List;

/**
 * Markers a Change class as containing one or more {@link ColumnConfig} configuration.
 */
public interface ChangeWithColumns {

    /**
     * Add a column configuration to the Change.
     */
    void addColumn(T column);

    /**
     * Return all the {@link ColumnConfig} objects defined for this {@link Change }
     */
    List getColumns();

    void setColumns(List columns);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy