KickJava   Java API By Example, From Geeks To Geeks.

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


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 revokeToken complex type.
11  *
12  * <p>The following schema fragment specifies the expected content contained within this class.
13  *
14  * <pre>
15  * &lt;complexType name="revokeToken">
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;/sequence>
22  * &lt;/restriction>
23  * &lt;/complexContent>
24  * &lt;/complexType>
25  * </pre>
26  *
27  *
28  */

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

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

59     public void setArg0(String JavaDoc value) {
60         this.arg0 = value;
61     }
62
63     /**
64      * Gets the value of the arg1 property.
65      *
66      */

67     public int getArg1() {
68         return arg1;
69     }
70
71     /**
72      * Sets the value of the arg1 property.
73      *
74      */

75     public void setArg1(int value) {
76         this.arg1 = value;
77     }
78
79 }
80
Popular Tags