KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > protocol > ws > client > gen > RevokeStatus


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 JavaDoc;
8
9
10 /**
11  * <p>Java class for revokeStatus complex type.
12  *
13  * <p>The following schema fragment specifies the expected content contained within this class.
14  *
15  * <pre>
16  * &lt;complexType name="revokeStatus">
17  * &lt;complexContent>
18  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19  * &lt;sequence>
20  * &lt;element name="certificateSN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
21  * &lt;element name="issuerDN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22  * &lt;element name="reason" type="{http://www.w3.org/2001/XMLSchema}int"/>
23  * &lt;element name="revocationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
24  * &lt;/sequence>
25  * &lt;/restriction>
26  * &lt;/complexContent>
27  * &lt;/complexType>
28  * </pre>
29  *
30  *
31  */

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 JavaDoc certificateSN;
42     protected String JavaDoc issuerDN;
43     protected int reason;
44     protected XMLGregorianCalendar JavaDoc revocationDate;
45
46     /**
47      * Gets the value of the certificateSN property.
48      *
49      * @return
50      * possible object is
51      * {@link String }
52      *
53      */

54     public String JavaDoc getCertificateSN() {
55         return certificateSN;
56     }
57
58     /**
59      * Sets the value of the certificateSN property.
60      *
61      * @param value
62      * allowed object is
63      * {@link String }
64      *
65      */

66     public void setCertificateSN(String JavaDoc value) {
67         this.certificateSN = value;
68     }
69
70     /**
71      * Gets the value of the issuerDN property.
72      *
73      * @return
74      * possible object is
75      * {@link String }
76      *
77      */

78     public String JavaDoc getIssuerDN() {
79         return issuerDN;
80     }
81
82     /**
83      * Sets the value of the issuerDN property.
84      *
85      * @param value
86      * allowed object is
87      * {@link String }
88      *
89      */

90     public void setIssuerDN(String JavaDoc value) {
91         this.issuerDN = value;
92     }
93
94     /**
95      * Gets the value of the reason property.
96      *
97      */

98     public int getReason() {
99         return reason;
100     }
101
102     /**
103      * Sets the value of the reason property.
104      *
105      */

106     public void setReason(int value) {
107         this.reason = value;
108     }
109
110     /**
111      * Gets the value of the revocationDate property.
112      *
113      * @return
114      * possible object is
115      * {@link XMLGregorianCalendar }
116      *
117      */

118     public XMLGregorianCalendar JavaDoc getRevocationDate() {
119         return revocationDate;
120     }
121
122     /**
123      * Sets the value of the revocationDate property.
124      *
125      * @param value
126      * allowed object is
127      * {@link XMLGregorianCalendar }
128      *
129      */

130     public void setRevocationDate(XMLGregorianCalendar JavaDoc value) {
131         this.revocationDate = value;
132     }
133
134 }
135
Popular Tags