View Javadoc
1   package com.jsql.model.accessible.vendor.postgres;
2   
3   import org.apache.commons.lang3.StringUtils;
4   
5   import java.io.Serializable;
6   
7   public class Sql implements Serializable {
8   
9       private String dropTable = StringUtils.EMPTY;
10      private String createTable = StringUtils.EMPTY;
11      private Confirm confirm = new Confirm();
12      private String resultCmd = StringUtils.EMPTY;
13      private String runCmd = StringUtils.EMPTY;
14      private String clean = StringUtils.EMPTY;
15      private String runFunc = StringUtils.EMPTY;
16  
17      public String getDropTable() {
18          return this.dropTable;
19      }
20  
21      public void setDropTable(String dropTable) {
22          this.dropTable = dropTable;
23      }
24  
25      public String getCreateTable() {
26          return this.createTable;
27      }
28  
29      public void setCreateTable(String createTable) {
30          this.createTable = createTable;
31      }
32  
33      public Confirm getConfirm() {
34          return this.confirm;
35      }
36  
37      public void setConfirm(Confirm confirm) {
38          this.confirm = confirm;
39      }
40  
41      public String getResultCmd() {
42          return this.resultCmd;
43      }
44  
45      public void setResultCmd(String resultCmd) {
46          this.resultCmd = resultCmd;
47      }
48  
49      public String getRunCmd() {
50          return this.runCmd;
51      }
52  
53      public void setRunCmd(String runCmd) {
54          this.runCmd = runCmd;
55      }
56  
57      public String getClean() {
58          return this.clean;
59      }
60  
61      public void setClean(String clean) {
62          this.clean = clean;
63      }
64  
65      public String getRunFunc() {
66          return this.runFunc;
67      }
68  
69      public void setRunFunc(String runFunc) {
70          this.runFunc = runFunc;
71      }
72  }