Project

General

Profile

1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
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: 2014.05.29 at 10:46:46 AM CEST 
6
//
7

    
8

    
9
package eu.dnetlib.schema.oaf;
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.XmlType;
15

    
16

    
17
/**
18
 * <p>Java class for externalreferenceType complex type.
19
 * 
20
 * <p>The following schema fragment specifies the expected content contained within this class.
21
 * 
22
 * <pre>
23
 * &lt;complexType name="externalreferenceType">
24
 *   &lt;complexContent>
25
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26
 *       &lt;sequence>
27
 *         &lt;element name="sitename" type="{http://www.w3.org/2001/XMLSchema}string"/>
28
 *         &lt;element name="label" type="{http://www.w3.org/2001/XMLSchema}string"/>
29
 *         &lt;element name="qualifier" type="{http://namespace.openaire.eu/oaf}optionalClassedSchemedElement"/>
30
 *         &lt;element name="refidentifier" type="{http://www.w3.org/2001/XMLSchema}string"/>
31
 *       &lt;/sequence>
32
 *     &lt;/restriction>
33
 *   &lt;/complexContent>
34
 * &lt;/complexType>
35
 * </pre>
36
 * 
37
 * 
38
 */
39
@XmlAccessorType(XmlAccessType.FIELD)
40
@XmlType(name = "externalreferenceType", propOrder = {
41
    "sitename",
42
    "label",
43
    "qualifier",
44
    "refidentifier"
45
})
46
public class ExternalreferenceType {
47

    
48
    @XmlElement(required = true)
49
    protected String sitename;
50
    @XmlElement(required = true)
51
    protected String label;
52
    @XmlElement(required = true)
53
    protected OptionalClassedSchemedElement qualifier;
54
    @XmlElement(required = true)
55
    protected String refidentifier;
56

    
57
    /**
58
     * Gets the value of the sitename property.
59
     * 
60
     * @return
61
     *     possible object is
62
     *     {@link String }
63
     *     
64
     */
65
    public String getSitename() {
66
        return sitename;
67
    }
68

    
69
    /**
70
     * Sets the value of the sitename property.
71
     * 
72
     * @param value
73
     *     allowed object is
74
     *     {@link String }
75
     *     
76
     */
77
    public void setSitename(String value) {
78
        this.sitename = value;
79
    }
80

    
81
    /**
82
     * Gets the value of the label property.
83
     * 
84
     * @return
85
     *     possible object is
86
     *     {@link String }
87
     *     
88
     */
89
    public String getLabel() {
90
        return label;
91
    }
92

    
93
    /**
94
     * Sets the value of the label property.
95
     * 
96
     * @param value
97
     *     allowed object is
98
     *     {@link String }
99
     *     
100
     */
101
    public void setLabel(String value) {
102
        this.label = value;
103
    }
104

    
105
    /**
106
     * Gets the value of the qualifier property.
107
     * 
108
     * @return
109
     *     possible object is
110
     *     {@link OptionalClassedSchemedElement }
111
     *     
112
     */
113
    public OptionalClassedSchemedElement getQualifier() {
114
        return qualifier;
115
    }
116

    
117
    /**
118
     * Sets the value of the qualifier property.
119
     * 
120
     * @param value
121
     *     allowed object is
122
     *     {@link OptionalClassedSchemedElement }
123
     *     
124
     */
125
    public void setQualifier(OptionalClassedSchemedElement value) {
126
        this.qualifier = value;
127
    }
128

    
129
    /**
130
     * Gets the value of the refidentifier property.
131
     * 
132
     * @return
133
     *     possible object is
134
     *     {@link String }
135
     *     
136
     */
137
    public String getRefidentifier() {
138
        return refidentifier;
139
    }
140

    
141
    /**
142
     * Sets the value of the refidentifier property.
143
     * 
144
     * @param value
145
     *     allowed object is
146
     *     {@link String }
147
     *     
148
     */
149
    public void setRefidentifier(String value) {
150
        this.refidentifier = value;
151
    }
152

    
153
}
(9-9/29)