KickJava   Java API By Example, From Geeks To Geeks.

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


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

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

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

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

58     public void setArg1(String JavaDoc arg1) {
59         this.arg1 = arg1;
60     }
61
62     /**
63      *
64      * @return
65      * returns int
66      */

67     public int getArg2() {
68         return this.arg2;
69     }
70
71     /**
72      *
73      * @param arg2
74      * the value for the arg2 property
75      */

76     public void setArg2(int arg2) {
77         this.arg2 = arg2;
78     }
79
80 }
81
Popular Tags