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

liquibase.statement.core.ReindexStatement Maven / Gradle / Ivy

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

import liquibase.statement.SqlStatement;

public class ReindexStatement implements SqlStatement {

	private String schemaName;
    private String tableName;
    
	public ReindexStatement(String schemaName, String tableName) {
		this.schemaName = schemaName;
        this.tableName = tableName;
	}
	
	public String getSchemaName() {
        return schemaName;
    }

    public String getTableName() {
        return tableName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy