KickJava   Java API By Example, From Geeks To Geeks.

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


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 pkcs12Req complex type.
11  *
12  * <p>The following schema fragment specifies the expected content contained within this class.
13  *
14  * <pre>
15  * &lt;complexType name="pkcs12Req">
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;element name="arg4" type="{http://www.w3.org/2001/XMLSchema}string" 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 = "pkcs12Req", propOrder = {
34     "arg0",
35     "arg1",
36     "arg2",
37     "arg3",
38     "arg4"
39 })
40 public class Pkcs12Req {
41
42     protected String JavaDoc arg0;
43     protected String JavaDoc arg1;
44     protected String JavaDoc arg2;
45     protected String JavaDoc arg3;
46     protected String JavaDoc arg4;
47
48     /**
49      * Gets the value of the arg0 property.
50      *
51      * @return
52      * possible object is
53      * {@link String }
54      *
55      */

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

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

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

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

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

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

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

140     public void setArg3(String JavaDoc value) {
141         this.arg3 = value;
142     }
143
144     /**
145      * Gets the value of the arg4 property.
146      *
147      * @return
148      * possible object is
149      * {@link String }
150      *
151      */

152     public String JavaDoc getArg4() {
153         return arg4;
154     }
155
156     /**
157      * Sets the value of the arg4 property.
158      *
159      * @param value
160      * allowed object is
161      * {@link String }
162      *
163      */

164     public void setArg4(String JavaDoc value) {
165         this.arg4 = value;
166     }
167
168 }
169
Popular Tags