View Javadoc
1   package com.jsql.model.accessible.vendor.derby;
2   
3   import org.apache.commons.lang3.StringUtils;
4   
5   public class File {
6   
7       private String createTable = StringUtils.EMPTY;
8       private String read = StringUtils.EMPTY;
9       private String write = StringUtils.EMPTY;
10  
11      public String getCreateTable() {
12          return this.createTable;
13      }
14  
15      public void setCreateTable(String createTable) {
16          this.createTable = createTable;
17      }
18  
19      public String getRead() {
20          return this.read;
21      }
22  
23      public void setRead(String read) {
24          this.read = read;
25      }
26  
27      public String getWrite() {
28          return this.write;
29      }
30  
31      public void setWrite(String write) {
32          this.write = write;
33      }
34  }