1 2 package org.ejbca.core.protocol.ws.client.gen; 3 4 import javax.xml.bind.annotation.XmlAccessType; 5 import javax.xml.bind.annotation.XmlAccessorType; 6 import javax.xml.bind.annotation.XmlType; 7 8 9 41 @XmlAccessorType(XmlAccessType.FIELD) 42 @XmlType(name = "userDataVOWS", propOrder = { 43 "caName", 44 "certificateProfileName", 45 "clearPwd", 46 "email", 47 "endEntityProfileName", 48 "hardTokenIssuerName", 49 "keyRecoverable", 50 "password", 51 "sendNotification", 52 "status", 53 "subjectAltName", 54 "subjectDN", 55 "tokenType", 56 "username" 57 }) 58 public class UserDataVOWS { 59 60 protected String caName; 61 protected String certificateProfileName; 62 protected boolean clearPwd; 63 protected String email; 64 protected String endEntityProfileName; 65 protected String hardTokenIssuerName; 66 protected boolean keyRecoverable; 67 protected String password; 68 protected boolean sendNotification; 69 protected int status; 70 protected String subjectAltName; 71 protected String subjectDN; 72 protected String tokenType; 73 protected String username; 74 75 83 public String getCaName() { 84 return caName; 85 } 86 87 95 public void setCaName(String value) { 96 this.caName = value; 97 } 98 99 107 public String getCertificateProfileName() { 108 return certificateProfileName; 109 } 110 111 119 public void setCertificateProfileName(String value) { 120 this.certificateProfileName = value; 121 } 122 123 127 public boolean isClearPwd() { 128 return clearPwd; 129 } 130 131 135 public void setClearPwd(boolean value) { 136 this.clearPwd = value; 137 } 138 139 147 public String getEmail() { 148 return email; 149 } 150 151 159 public void setEmail(String value) { 160 this.email = value; 161 } 162 163 171 public String getEndEntityProfileName() { 172 return endEntityProfileName; 173 } 174 175 183 public void setEndEntityProfileName(String value) { 184 this.endEntityProfileName = value; 185 } 186 187 195 public String getHardTokenIssuerName() { 196 return hardTokenIssuerName; 197 } 198 199 207 public void setHardTokenIssuerName(String value) { 208 this.hardTokenIssuerName = value; 209 } 210 211 215 public boolean isKeyRecoverable() { 216 return keyRecoverable; 217 } 218 219 223 public void setKeyRecoverable(boolean value) { 224 this.keyRecoverable = value; 225 } 226 227 235 public String getPassword() { 236 return password; 237 } 238 239 247 public void setPassword(String value) { 248 this.password = value; 249 } 250 251 255 public boolean isSendNotification() { 256 return sendNotification; 257 } 258 259 263 public void setSendNotification(boolean value) { 264 this.sendNotification = value; 265 } 266 267 271 public int getStatus() { 272 return status; 273 } 274 275 279 public void setStatus(int value) { 280 this.status = value; 281 } 282 283 291 public String getSubjectAltName() { 292 return subjectAltName; 293 } 294 295 303 public void setSubjectAltName(String value) { 304 this.subjectAltName = value; 305 } 306 307 315 public String getSubjectDN() { 316 return subjectDN; 317 } 318 319 327 public void setSubjectDN(String value) { 328 this.subjectDN = value; 329 } 330 331 339 public String getTokenType() { 340 return tokenType; 341 } 342 343 351 public void setTokenType(String value) { 352 this.tokenType = value; 353 } 354 355 363 public String getUsername() { 364 return username; 365 } 366 367 375 public void setUsername(String value) { 376 this.username = value; 377 } 378 379 } 380 | Popular Tags |