1 18 19 package sync4j.framework.core.dm.ddf; 20 21 22 29 30 public class DevDetail { 31 32 34 public static final String DEVDETAIL_URI_MAX_DEPTH = "/URI/MaxDepth"; 35 public static final String DEVDETAIL_URI_MAX_TOT_LEN = "/URI/MaxToLen" ; 36 public static final String DEVDETAIL_URI_MAX_SEG_LEN = "/URI/MaxSegLen" ; 37 public static final String DEVDETAIL_DEV_TYP = "/DevTyp"; 38 public static final String DEVDETAIL_OEM = "/OEM"; 39 public static final String DEVDETAIL_FWV = "/FwV"; 40 public static final String DEVDETAIL_SWV = "/SwV"; 41 public static final String DEVDETAIL_HWV = "/HwV"; 42 public static final String DEVDETAIL_LRG_OBJ = "/LrgObj"; 43 44 45 private String uriMaxDepth; 47 private String uriMaxLen; 48 private String uriMaxSegLen; 49 private String devTyp; 50 private String oem; 51 private String fwVersion; 52 private String swVersion; 53 private String hwVersion; 54 private String lrgObj; 55 56 57 59 protected DevDetail() {} 60 61 75 public DevDetail(final String uriMaxDepth, 76 final String uriMaxLen, 77 final String uriMaxSegLen, 78 final String devTyp, 79 final String oem, 80 final String fwVersion, 81 final String swVersion, 82 final String hwVersion, 83 final String lrgObj) { 84 this.uriMaxDepth = uriMaxDepth; 85 this.uriMaxLen = uriMaxLen; 86 this.uriMaxSegLen = uriMaxSegLen; 87 this.devTyp = devTyp; 88 this.oem = oem; 89 this.fwVersion = fwVersion; 90 this.swVersion = swVersion; 91 this.hwVersion = hwVersion; 92 this.lrgObj = lrgObj; 93 } 94 95 96 98 99 104 public String getUriMaxDepth() { 105 return uriMaxDepth; 106 } 107 108 113 public void setUriMaxDepth(String uriMaxDepth) { 114 this.uriMaxDepth = uriMaxDepth; 115 } 116 117 122 public String getUriMaxLen() { 123 return uriMaxLen; 124 } 125 126 131 public void setUriMaxLen(String uriMaxLen) { 132 this.uriMaxLen = uriMaxLen; 133 } 134 135 140 public String getUriMaxSegLen() { 141 return uriMaxSegLen; 142 } 143 144 149 public void setUriMaxSegLen(String uriMaxSegLen) { 150 this.uriMaxSegLen = uriMaxSegLen; 151 } 152 153 158 public String getDevTyp() { 159 return devTyp; 160 } 161 162 167 public void setDevTyp(String devTyp) { 168 this.devTyp = devTyp; 169 } 170 171 176 public String getOem() { 177 return oem; 178 } 179 180 185 public void setOem(String oem) { 186 this.oem = oem; 187 } 188 189 194 public String getFwVersion() { 195 return fwVersion; 196 } 197 198 203 public void setFwVersion(String fwVersion) { 204 this.fwVersion = fwVersion; 205 } 206 207 212 public String getSwVersion() { 213 return swVersion; 214 } 215 216 221 public void setSwVersion(String swVersion) { 222 this.swVersion = swVersion; 223 } 224 225 230 public String getHwVersion() { 231 return hwVersion; 232 } 233 234 239 public void setHwVersion(String hwVersion) { 240 this.hwVersion = hwVersion; 241 } 242 243 248 public String getLrgObj() { 249 return lrgObj; 250 } 251 252 257 public void setLrgObj(String lrgObj) { 258 this.lrgObj = lrgObj; 259 } 260 261 } | Popular Tags |