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 import javax.xml.datatype.XMLGregorianCalendar ; 8 9 10 32 @XmlAccessorType(XmlAccessType.FIELD) 33 @XmlType(name = "revokeStatus", propOrder = { 34 "certificateSN", 35 "issuerDN", 36 "reason", 37 "revocationDate" 38 }) 39 public class RevokeStatus { 40 41 protected String certificateSN; 42 protected String issuerDN; 43 protected int reason; 44 protected XMLGregorianCalendar revocationDate; 45 46 54 public String getCertificateSN() { 55 return certificateSN; 56 } 57 58 66 public void setCertificateSN(String value) { 67 this.certificateSN = value; 68 } 69 70 78 public String getIssuerDN() { 79 return issuerDN; 80 } 81 82 90 public void setIssuerDN(String value) { 91 this.issuerDN = value; 92 } 93 94 98 public int getReason() { 99 return reason; 100 } 101 102 106 public void setReason(int value) { 107 this.reason = value; 108 } 109 110 118 public XMLGregorianCalendar getRevocationDate() { 119 return revocationDate; 120 } 121 122 130 public void setRevocationDate(XMLGregorianCalendar value) { 131 this.revocationDate = value; 132 } 133 134 } 135 | Popular Tags |