1 23 24 package org.objectweb.cjdbc.common.shared; 25 26 import java.io.Serializable ; 27 28 35 public class DumpInfo implements Serializable 36 { 37 private static final long serialVersionUID = -5627995243952765938L; 38 39 private String dumpName; 40 private String dumpDate; 41 private String dumpPath; 42 private String dumpFormat; 43 private String checkpointName; 44 private String backendName; 45 private String tables; 46 47 59 public DumpInfo(String dumpName, String dumpDate, String dumpPath, 61 String dumpFormat, String checkpointName, String backendName, 62 String tables) 63 { 64 this.dumpName = dumpName; 65 this.dumpDate = dumpDate; 66 this.dumpPath = dumpPath; 67 this.dumpFormat = dumpFormat; 68 this.checkpointName = checkpointName; 69 this.backendName = backendName; 70 this.tables = tables; 71 } 72 73 78 public String getBackendName() 79 { 80 return backendName; 81 } 82 83 88 public void setBackendName(String backendName) 89 { 90 this.backendName = backendName; 91 } 92 93 98 public String getCheckpointName() 99 { 100 return checkpointName; 101 } 102 103 108 public void setCheckpointName(String checkpointName) 109 { 110 this.checkpointName = checkpointName; 111 } 112 113 118 public String getDumpDate() 119 { 120 return dumpDate; 121 } 122 123 128 public void setDumpDate(String dumpDate) 129 { 130 this.dumpDate = dumpDate; 131 } 132 133 138 public String getDumpName() 139 { 140 return dumpName; 141 } 142 143 148 public void setDumpName(String dumpName) 149 { 150 this.dumpName = dumpName; 151 } 152 153 158 public String getDumpPath() 159 { 160 return dumpPath; 161 } 162 163 168 public void setDumpPath(String dumpPath) 169 { 170 this.dumpPath = dumpPath; 171 } 172 173 178 public String getDumpFormat() 179 { 180 return dumpFormat; 181 } 182 183 188 public void setDumpFormat(String dumpFormat) 189 { 190 this.dumpFormat = dumpFormat; 191 } 192 193 198 public String getTables() 199 { 200 return tables; 201 } 202 203 208 public void setTables(String tables) 209 { 210 this.tables = tables; 211 } 212 213 } 214 | Popular Tags |