View Javadoc
1   package com.jsql.model.accessible.vendor.mysql;
2   
3   import org.apache.commons.lang3.StringUtils;
4   
5   import java.io.Serializable;
6   
7   public class TempTable implements Serializable {
8   
9       private String nameDatabase = StringUtils.EMPTY;
10      private String drop = StringUtils.EMPTY;
11      private String confirm = StringUtils.EMPTY;
12      private String create = StringUtils.EMPTY;
13      private String insertChunks = StringUtils.EMPTY;
14      private String appendChunks = StringUtils.EMPTY;
15      private String dump = StringUtils.EMPTY;
16  
17      public String getNameDatabase() {
18          return this.nameDatabase;
19      }
20  
21      public void setNameDatabase(String nameDatabase) {
22          this.nameDatabase = nameDatabase;
23      }
24  
25      public String getDrop() {
26          return this.drop;
27      }
28  
29      public void setDrop(String drop) {
30          this.drop = drop;
31      }
32  
33      public String getConfirm() {
34          return this.confirm;
35      }
36  
37      public void setConfirm(String confirm) {
38          this.confirm = confirm;
39      }
40  
41      public String getCreate() {
42          return this.create;
43      }
44  
45      public void setCreate(String create) {
46          this.create = create;
47      }
48  
49      public String getInsertChunks() {
50          return this.insertChunks;
51      }
52  
53      public void setInsertChunks(String insertChunks) {
54          this.insertChunks = insertChunks;
55      }
56  
57      public String getAppendChunks() {
58          return this.appendChunks;
59      }
60  
61      public void setAppendChunks(String appendChunks) {
62          this.appendChunks = appendChunks;
63      }
64  
65      public String getDump() {
66          return this.dump;
67      }
68  
69      public void setDump(String dump) {
70          this.dump = dump;
71      }
72  }