KickJava   Java API By Example, From Geeks To Geeks.

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


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 userMatch complex type.
11  *
12  * <p>The following schema fragment specifies the expected content contained within this class.
13  *
14  * <pre>
15  * &lt;complexType name="userMatch">
16  * &lt;complexContent>
17  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18  * &lt;sequence>
19  * &lt;element name="matchtype" type="{http://www.w3.org/2001/XMLSchema}int"/>
20  * &lt;element name="matchvalue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
21  * &lt;element name="matchwith" type="{http://www.w3.org/2001/XMLSchema}int"/>
22  * &lt;/sequence>
23  * &lt;/restriction>
24  * &lt;/complexContent>
25  * &lt;/complexType>
26  * </pre>
27  *
28  *
29  */

30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "userMatch", propOrder = {
32     "matchtype",
33     "matchvalue",
34     "matchwith"
35 })
36 public class UserMatch {
37
38     protected int matchtype;
39     protected String JavaDoc matchvalue;
40     protected int matchwith;
41
42     /**
43      * Gets the value of the matchtype property.
44      *
45      */

46     public int getMatchtype() {
47         return matchtype;
48     }
49
50     /**
51      * Sets the value of the matchtype property.
52      *
53      */

54     public void setMatchtype(int value) {
55         this.matchtype = value;
56     }
57
58     /**
59      * Gets the value of the matchvalue property.
60      *
61      * @return
62      * possible object is
63      * {@link String }
64      *
65      */

66     public String JavaDoc getMatchvalue() {
67         return matchvalue;
68     }
69
70     /**
71      * Sets the value of the matchvalue property.
72      *
73      * @param value
74      * allowed object is
75      * {@link String }
76      *
77      */

78     public void setMatchvalue(String JavaDoc value) {
79         this.matchvalue = value;
80     }
81
82     /**
83      * Gets the value of the matchwith property.
84      *
85      */

86     public int getMatchwith() {
87         return matchwith;
88     }
89
90     /**
91      * Sets the value of the matchwith property.
92      *
93      */

94     public void setMatchwith(int value) {
95         this.matchwith = value;
96     }
97
98 }
99
Popular Tags