liquibase.statement.core.RenameViewStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
package liquibase.statement.core;
import liquibase.statement.AbstractSqlStatement;
public class RenameViewStatement extends AbstractSqlStatement {
private final String catalogName;
private final String schemaName;
private final String oldViewName;
private final String newViewName;
public RenameViewStatement(String catalogName, String schemaName, String oldViewName, String newViewName) {
this.catalogName = catalogName;
this.schemaName = schemaName;
this.oldViewName = oldViewName;
this.newViewName = newViewName;
}
public String getCatalogName() {
return catalogName;
}
public String getSchemaName() {
return schemaName;
}
public String getOldViewName() {
return oldViewName;
}
public String getNewViewName() {
return newViewName;
}
}