Project

General

Profile

Download (5.88 KB) Statistics
| Branch: | Tag: | Revision:
1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
3
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4
// Any modifications to this file will be lost upon recompilation of the source schema. 
5
// Generated on: 2015.10.06 at 04:54:40 PM CEST 
6
//
7

    
8

    
9
package org.bgbm.biovel.drf.tnr.msg;
10

    
11
import javax.xml.bind.annotation.XmlAccessType;
12
import javax.xml.bind.annotation.XmlAccessorType;
13
import javax.xml.bind.annotation.XmlElement;
14
import javax.xml.bind.annotation.XmlRootElement;
15
import javax.xml.bind.annotation.XmlType;
16
import com.fasterxml.jackson.annotation.JsonProperty;
17
import com.wordnik.swagger.annotations.ApiModelProperty;
18

    
19

    
20
/**
21
 * <p>Java class for anonymous complex type.
22
 * 
23
 * <p>The following schema fragment specifies the expected content contained within this class.
24
 * 
25
 * <pre>
26
 * &lt;complexType&gt;
27
 *   &lt;complexContent&gt;
28
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
29
 *       &lt;sequence&gt;
30
 *         &lt;element name="kingdom" minOccurs="0"&gt;
31
 *           &lt;simpleType&gt;
32
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
33
 *             &lt;/restriction&gt;
34
 *           &lt;/simpleType&gt;
35
 *         &lt;/element&gt;
36
 *         &lt;element name="phylum" minOccurs="0"&gt;
37
 *           &lt;simpleType&gt;
38
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
39
 *             &lt;/restriction&gt;
40
 *           &lt;/simpleType&gt;
41
 *         &lt;/element&gt;
42
 *         &lt;element name="class" minOccurs="0"&gt;
43
 *           &lt;simpleType&gt;
44
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
45
 *             &lt;/restriction&gt;
46
 *           &lt;/simpleType&gt;
47
 *         &lt;/element&gt;
48
 *         &lt;element name="order" minOccurs="0"&gt;
49
 *           &lt;simpleType&gt;
50
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
51
 *             &lt;/restriction&gt;
52
 *           &lt;/simpleType&gt;
53
 *         &lt;/element&gt;
54
 *         &lt;element name="family" minOccurs="0"&gt;
55
 *           &lt;simpleType&gt;
56
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
57
 *             &lt;/restriction&gt;
58
 *           &lt;/simpleType&gt;
59
 *         &lt;/element&gt;
60
 *         &lt;element name="genus" minOccurs="0"&gt;
61
 *           &lt;simpleType&gt;
62
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
63
 *             &lt;/restriction&gt;
64
 *           &lt;/simpleType&gt;
65
 *         &lt;/element&gt;
66
 *       &lt;/sequence&gt;
67
 *     &lt;/restriction&gt;
68
 *   &lt;/complexContent&gt;
69
 * &lt;/complexType&gt;
70
 * </pre>
71
 * 
72
 * 
73
 */
74
@XmlAccessorType(XmlAccessType.FIELD)
75
@XmlType(name = "", propOrder = {
76
    "kingdom",
77
    "phylum",
78
    "clazz",
79
    "order",
80
    "family",
81
    "genus"
82
})
83
@XmlRootElement(name = "classification")
84
public class Classification {
85

    
86
    protected String kingdom;
87
    protected String phylum;
88
    @XmlElement(name = "class")
89
    protected String clazz;
90
    protected String order;
91
    protected String family;
92
    protected String genus;
93

    
94
    /**
95
     * Gets the value of the kingdom property.
96
     * 
97
     * @return
98
     *     possible object is
99
     *     {@link String }
100
     *     
101
     */
102
    public String getKingdom() {
103
        return kingdom;
104
    }
105

    
106
    /**
107
     * Sets the value of the kingdom property.
108
     * 
109
     * @param value
110
     *     allowed object is
111
     *     {@link String }
112
     *     
113
     */
114
    public void setKingdom(String value) {
115
        this.kingdom = value;
116
    }
117

    
118
    /**
119
     * Gets the value of the phylum property.
120
     * 
121
     * @return
122
     *     possible object is
123
     *     {@link String }
124
     *     
125
     */
126
    public String getPhylum() {
127
        return phylum;
128
    }
129

    
130
    /**
131
     * Sets the value of the phylum property.
132
     * 
133
     * @param value
134
     *     allowed object is
135
     *     {@link String }
136
     *     
137
     */
138
    public void setPhylum(String value) {
139
        this.phylum = value;
140
    }
141

    
142
    /**
143
     * Gets the value of the clazz property.
144
     * 
145
     * @return
146
     *     possible object is
147
     *     {@link String }
148
     *     
149
     */
150
    @JsonProperty("class")
151
    @ApiModelProperty("The full scientific name of the class in which the taxon is classified.")
152
    public String getClazz() {
153
        return clazz;
154
    }
155

    
156
    /**
157
     * Sets the value of the clazz property.
158
     * 
159
     * @param value
160
     *     allowed object is
161
     *     {@link String }
162
     *     
163
     */
164
    public void setClazz(String value) {
165
        this.clazz = value;
166
    }
167

    
168
    /**
169
     * Gets the value of the order property.
170
     * 
171
     * @return
172
     *     possible object is
173
     *     {@link String }
174
     *     
175
     */
176
    public String getOrder() {
177
        return order;
178
    }
179

    
180
    /**
181
     * Sets the value of the order property.
182
     * 
183
     * @param value
184
     *     allowed object is
185
     *     {@link String }
186
     *     
187
     */
188
    public void setOrder(String value) {
189
        this.order = value;
190
    }
191

    
192
    /**
193
     * Gets the value of the family property.
194
     * 
195
     * @return
196
     *     possible object is
197
     *     {@link String }
198
     *     
199
     */
200
    public String getFamily() {
201
        return family;
202
    }
203

    
204
    /**
205
     * Sets the value of the family property.
206
     * 
207
     * @param value
208
     *     allowed object is
209
     *     {@link String }
210
     *     
211
     */
212
    public void setFamily(String value) {
213
        this.family = value;
214
    }
215

    
216
    /**
217
     * Gets the value of the genus property.
218
     * 
219
     * @return
220
     *     possible object is
221
     *     {@link String }
222
     *     
223
     */
224
    public String getGenus() {
225
        return genus;
226
    }
227

    
228
    /**
229
     * Sets the value of the genus property.
230
     * 
231
     * @param value
232
     *     allowed object is
233
     *     {@link String }
234
     *     
235
     */
236
    public void setGenus(String value) {
237
        this.genus = value;
238
    }
239

    
240
}
(2-2/13)