Project

General

Profile

Download (2.5 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

    
17

    
18
/**
19
 * <p>Java class for anonymous complex type.
20
 * 
21
 * <p>The following schema fragment specifies the expected content contained within this class.
22
 * 
23
 * <pre>
24
 * &lt;complexType&gt;
25
 *   &lt;complexContent&gt;
26
 *     &lt;extension base="{http://bgbm.org/biovel/drf/tnr/msg}taxonBase"&gt;
27
 *       &lt;sequence&gt;
28
 *         &lt;element ref="{http://bgbm.org/biovel/drf/tnr/msg}classification" minOccurs="0"/&gt;
29
 *         &lt;element name="identifier" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
30
 *       &lt;/sequence&gt;
31
 *     &lt;/extension&gt;
32
 *   &lt;/complexContent&gt;
33
 * &lt;/complexType&gt;
34
 * </pre>
35
 * 
36
 * 
37
 */
38
@XmlAccessorType(XmlAccessType.FIELD)
39
@XmlType(name = "", propOrder = {
40
    "classification",
41
    "identifier"
42
})
43
@XmlRootElement(name = "taxon")
44
public class Taxon
45
    extends TaxonBase
46
{
47

    
48
    protected Classification classification;
49
    @XmlElement(required = true)
50
    protected String identifier;
51

    
52
    /**
53
     * Gets the value of the classification property.
54
     * 
55
     * @return
56
     *     possible object is
57
     *     {@link Classification }
58
     *     
59
     */
60
    public Classification getClassification() {
61
        return classification;
62
    }
63

    
64
    /**
65
     * Sets the value of the classification property.
66
     * 
67
     * @param value
68
     *     allowed object is
69
     *     {@link Classification }
70
     *     
71
     */
72
    public void setClassification(Classification value) {
73
        this.classification = value;
74
    }
75

    
76
    /**
77
     * Gets the value of the identifier property.
78
     * 
79
     * @return
80
     *     possible object is
81
     *     {@link String }
82
     *     
83
     */
84
    public String getIdentifier() {
85
        return identifier;
86
    }
87

    
88
    /**
89
     * Sets the value of the identifier property.
90
     * 
91
     * @param value
92
     *     allowed object is
93
     *     {@link String }
94
     *     
95
     */
96
    public void setIdentifier(String value) {
97
        this.identifier = value;
98
    }
99

    
100
}
(9-9/13)