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

liquibase.change.core.LoadDataColumnConfig Maven / Gradle / Ivy

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

import liquibase.change.ColumnConfig;

public class LoadDataColumnConfig extends ColumnConfig {

    private Integer index;
    private String header;

   public Integer getIndex() {
        return index;
    }

    public void setIndex(Integer index) {
        this.index = index;
    }

    public String getHeader() {
        return header;
    }

    public void setHeader(String header) {
        this.header = header;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy