KickJava   Java API By Example, From Geeks To Geeks.

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


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 = "pkcs12Req", namespace = "http://ws.protocol.core.ejbca.org/")
11 @XmlAccessorType(XmlAccessType.FIELD)
12 @XmlType(name = "pkcs12Req", namespace = "http://ws.protocol.core.ejbca.org/", propOrder = {
13     "arg0",
14     "arg1",
15     "arg2",
16     "arg3",
17     "arg4"
18 })
19 public class Pkcs12Req {
20
21     @XmlElement(name = "arg0", namespace = "")
22     private String JavaDoc arg0;
23     @XmlElement(name = "arg1", namespace = "")
24     private String JavaDoc arg1;
25     @XmlElement(name = "arg2", namespace = "")
26     private String JavaDoc arg2;
27     @XmlElement(name = "arg3", namespace = "")
28     private String JavaDoc arg3;
29     @XmlElement(name = "arg4", namespace = "")
30     private String JavaDoc arg4;
31
32     /**
33      *
34      * @return
35      * returns String
36      */

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

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

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

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

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

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

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

100     public void setArg3(String JavaDoc arg3) {
101         this.arg3 = arg3;
102     }
103
104     /**
105      *
106      * @return
107      * returns String
108      */

109     public String JavaDoc getArg4() {
110         return this.arg4;
111     }
112
113     /**
114      *
115      * @param arg4
116      * the value for the arg4 property
117      */

118     public void setArg4(String JavaDoc arg4) {
119         this.arg4 = arg4;
120     }
121
122 }
123
Popular Tags