Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
DropViewStatement |
|
| 1.0;1 |
1 | package liquibase.statement.core; | |
2 | ||
3 | import liquibase.statement.AbstractSqlStatement; | |
4 | ||
5 | public class DropViewStatement extends AbstractSqlStatement { | |
6 | ||
7 | private String schemaName; | |
8 | private String viewName; | |
9 | ||
10 | 47 | public DropViewStatement(String schemaName, String viewName) { |
11 | 47 | this.schemaName = schemaName; |
12 | 47 | this.viewName = viewName; |
13 | 47 | } |
14 | ||
15 | public String getSchemaName() { | |
16 | 1 | return schemaName; |
17 | } | |
18 | ||
19 | public String getViewName() { | |
20 | 16 | return viewName; |
21 | } | |
22 | } |