1 package liquibase.statement.core;
2
3 import liquibase.statement.AbstractSqlStatement;
4
5 public class DropIndexStatement extends AbstractSqlStatement {
6
7 private String indexName;
8 private String tableSchemaName;
9 private String tableName;
10 private String associatedWith;
11
12 public DropIndexStatement(String indexName, String tableSchemaName, String tableName, String associatedWith) {
13 this.tableSchemaName = tableSchemaName;
14 this.indexName = indexName;
15 this.tableName = tableName;
16 this.associatedWith = associatedWith;
17 }
18
19 public String getTableSchemaName() {
20 return tableSchemaName;
21 }
22
23 public String getIndexName() {
24 return indexName;
25 }
26
27 public String getTableName() {
28 return tableName;
29 }
30
31 public String getAssociatedWith() {
32 return associatedWith;
33 }
34
35 public void setAssociatedWith(String associatedWith) {
36 this.associatedWith = associatedWith;
37 }
38 }