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

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

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

import liquibase.statement.AbstractSqlStatement;

public class GetViewDefinitionStatement extends AbstractSqlStatement {
    private String catalogName;
    private String schemaName;
    private 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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy