liquibase.ext.mssql.statement.DropStoredProcedureStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-mssql Show documentation
Show all versions of liquibase-mssql Show documentation
Liquibase extensions for MS SQL Server.
package liquibase.ext.mssql.statement;
import liquibase.statement.AbstractSqlStatement;
public class DropStoredProcedureStatement extends AbstractSqlStatement {
private String catalogName;
private String schemaName;
public DropStoredProcedureStatement(String catalogName, String schemaName) {
this.catalogName = catalogName;
this.schemaName = schemaName;
}
public String getCatalogName() {
return catalogName;
}
public String getSchemaName() {
return schemaName;
}
}