liquibase.statement.core.GetViewDefinitionStatement 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 GetViewDefinitionStatement extends AbstractSqlStatement {
private final String catalogName;
private final String schemaName;
private final String viewName;
public GetViewDefinitionStatement(String catalogName, String schemaName, String viewName) {
this.catalogName = catalogName;
this.schemaName = schemaName;
this.viewName = viewName;
}
public String getCatalogName() {
return catalogName;
}
public String getSchemaName() {
return schemaName;
}
public String getViewName() {
return viewName;
}
}