KickJava   Java API By Example, From Geeks To Geeks.

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


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

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

37     public void setArg0(String JavaDoc arg0) {
38         this.arg0 = arg0;
39     }
40
41     /**
42      *
43      * @return
44      * returns boolean
45      */

46     public boolean getArg1() {
47         return this.arg1;
48     }
49
50     /**
51      *
52      * @param arg1
53      * the value for the arg1 property
54      */

55     public void setArg1(boolean arg1) {
56         this.arg1 = arg1;
57     }
58
59 }
60
Popular Tags