KickJava   Java API By Example, From Geeks To Geeks.

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


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 revokeUser complex type.
11  *
12  * <p>The following schema fragment specifies the expected content contained within this class.
13  *
14  * <pre>
15  * &lt;complexType name="revokeUser">
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}int"/>
21  * &lt;element name="arg2" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
22  * &lt;/sequence>
23  * &lt;/restriction>
24  * &lt;/complexContent>
25  * &lt;/complexType>
26  * </pre>
27  *
28  *
29  */

30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "revokeUser", propOrder = {
32     "arg0",
33     "arg1",
34     "arg2"
35 })
36 public class RevokeUser {
37
38     protected String JavaDoc arg0;
39     protected int arg1;
40     protected boolean 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      */

70     public int getArg1() {
71         return arg1;
72     }
73
74     /**
75      * Sets the value of the arg1 property.
76      *
77      */

78     public void setArg1(int value) {
79         this.arg1 = value;
80     }
81
82     /**
83      * Gets the value of the arg2 property.
84      *
85      */

86     public boolean isArg2() {
87         return arg2;
88     }
89
90     /**
91      * Sets the value of the arg2 property.
92      *
93      */

94     public void setArg2(boolean value) {
95         this.arg2 = value;
96     }
97
98 }
99
Popular Tags