KickJava   Java API By Example, From Geeks To Geeks.

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


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

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

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

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

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

89     public void setArg1(String JavaDoc value) {
90         this.arg1 = value;
91     }
92
93     /**
94      * Gets the value of the arg2 property.
95      *
96      * @return
97      * possible object is
98      * {@link String }
99      *
100      */

101     public String JavaDoc getArg2() {
102         return arg2;
103     }
104
105     /**
106      * Sets the value of the arg2 property.
107      *
108      * @param value
109      * allowed object is
110      * {@link String }
111      *
112      */

113     public void setArg2(String JavaDoc value) {
114         this.arg2 = value;
115     }
116
117     /**
118      * Gets the value of the arg3 property.
119      *
120      * @return
121      * possible object is
122      * {@link String }
123      *
124      */

125     public String JavaDoc getArg3() {
126         return arg3;
127     }
128
129     /**
130      * Sets the value of the arg3 property.
131      *
132      * @param value
133      * allowed object is
134      * {@link String }
135      *
136      */

137     public void setArg3(String JavaDoc value) {
138         this.arg3 = value;
139     }
140
141 }
142
Popular Tags