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