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 Wal implements Serializable {
8   
9       private String getStatus = StringUtils.EMPTY;
10      private String getPathConf = StringUtils.EMPTY;
11      private String getConfLoid = StringUtils.EMPTY;
12      private String getConfLength = StringUtils.EMPTY;
13      private String putCmd = StringUtils.EMPTY;
14      private String reloadConf = StringUtils.EMPTY;
15      private String getCmd = StringUtils.EMPTY;
16      private String runWal = StringUtils.EMPTY;
17      private String getResult = StringUtils.EMPTY;
18  
19      public String getGetPathConf() {
20          return this.getPathConf;
21      }
22  
23      public void setGetPathConf(String getPathConf) {
24          this.getPathConf = getPathConf;
25      }
26  
27      public String getGetStatus() {
28          return this.getStatus;
29      }
30  
31      public void setGetStatus(String getStatus) {
32          this.getStatus = getStatus;
33      }
34  
35      public String getGetConfLoid() {
36          return this.getConfLoid;
37      }
38  
39      public void setGetConfLoid(String getConfLoid) {
40          this.getConfLoid = getConfLoid;
41      }
42  
43      public String getGetConfLength() {
44          return this.getConfLength;
45      }
46  
47      public void setGetConfLength(String getConfLength) {
48          this.getConfLength = getConfLength;
49      }
50  
51      public String getPutCmd() {
52          return this.putCmd;
53      }
54  
55      public void setPutCmd(String putCmd) {
56          this.putCmd = putCmd;
57      }
58  
59      public String getReloadConf() {
60          return this.reloadConf;
61      }
62  
63      public void setReloadConf(String reloadConf) {
64          this.reloadConf = reloadConf;
65      }
66  
67      public String getGetCmd() {
68          return this.getCmd;
69      }
70  
71      public void setGetCmd(String getCmd) {
72          this.getCmd = getCmd;
73      }
74  
75      public String getRunWal() {
76          return this.runWal;
77      }
78  
79      public void setRunWal(String runWal) {
80          this.runWal = runWal;
81      }
82  
83      public String getGetResult() {
84          return this.getResult;
85      }
86  
87      public void setGetResult(String getResult) {
88          this.getResult = getResult;
89      }
90  }