KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > protocol > ws > jaxws > Pkcs10Req


1
2 package org.ejbca.core.protocol.ws.jaxws;
3
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9
10 @XmlRootElement(name = "pkcs10Req", namespace = "http://ws.protocol.core.ejbca.org/")
11 @XmlAccessorType(XmlAccessType.FIELD)
12 @XmlType(name = "pkcs10Req", namespace = "http://ws.protocol.core.ejbca.org/", propOrder = {
13     "arg0",
14     "arg1",
15     "arg2",
16     "arg3"
17 })
18 public class Pkcs10Req {
19
20     @XmlElement(name = "arg0", namespace = "")
21     private String JavaDoc arg0;
22     @XmlElement(name = "arg1", namespace = "")
23     private String JavaDoc arg1;
24     @XmlElement(name = "arg2", namespace = "")
25     private String JavaDoc arg2;
26     @XmlElement(name = "arg3", namespace = "")
27     private String JavaDoc arg3;
28
29     /**
30      *
31      * @return
32      * returns String
33      */

34     public String JavaDoc getArg0() {
35         return this.arg0;
36     }
37
38     /**
39      *
40      * @param arg0
41      * the value for the arg0 property
42      */

43     public void setArg0(String JavaDoc arg0) {
44         this.arg0 = arg0;
45     }
46
47     /**
48      *
49      * @return
50      * returns String
51      */

52     public String JavaDoc getArg1() {
53         return this.arg1;
54     }
55
56     /**
57      *
58      * @param arg1
59      * the value for the arg1 property
60      */

61     public void setArg1(String JavaDoc arg1) {
62         this.arg1 = arg1;
63     }
64
65     /**
66      *
67      * @return
68      * returns String
69      */

70     public String JavaDoc getArg2() {
71         return this.arg2;
72     }
73
74     /**
75      *
76      * @param arg2
77      * the value for the arg2 property
78      */

79     public void setArg2(String JavaDoc arg2) {
80         this.arg2 = arg2;
81     }
82
83     /**
84      *
85      * @return
86      * returns String
87      */

88     public String JavaDoc getArg3() {
89         return this.arg3;
90     }
91
92     /**
93      *
94      * @param arg3
95      * the value for the arg3 property
96      */

97     public void setArg3(String JavaDoc arg3) {
98         this.arg3 = arg3;
99     }
100
101 }
102
Popular Tags