KickJava   Java API By Example, From Geeks To Geeks.

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


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

30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "revokeCert", propOrder = {
32     "arg0",
33     "arg1",
34     "arg2"
35 })
36 public class RevokeCert {
37
38     protected String JavaDoc arg0;
39     protected String JavaDoc arg1;
40     protected int arg2;
41
42     /**
43      * Gets the value of the arg0 property.
44      *
45      * @return
46      * possible object is
47      * {@link String }
48      *
49      */

50     public String JavaDoc getArg0() {
51         return arg0;
52     }
53
54     /**
55      * Sets the value of the arg0 property.
56      *
57      * @param value
58      * allowed object is
59      * {@link String }
60      *
61      */

62     public void setArg0(String JavaDoc value) {
63         this.arg0 = value;
64     }
65
66     /**
67      * Gets the value of the arg1 property.
68      *
69      * @return
70      * possible object is
71      * {@link String }
72      *
73      */

74     public String JavaDoc getArg1() {
75         return arg1;
76     }
77
78     /**
79      * Sets the value of the arg1 property.
80      *
81      * @param value
82      * allowed object is
83      * {@link String }
84      *
85      */

86     public void setArg1(String JavaDoc value) {
87         this.arg1 = value;
88     }
89
90     /**
91      * Gets the value of the arg2 property.
92      *
93      */

94     public int getArg2() {
95         return arg2;
96     }
97
98     /**
99      * Sets the value of the arg2 property.
100      *
101      */

102     public void setArg2(int value) {
103         this.arg2 = value;
104     }
105
106 }
107
Popular Tags