Project

General

Profile

Download (4.89 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.09.30 at 01:51:04 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.XmlType;
15
import com.wordnik.swagger.annotations.ApiModelProperty;
16

    
17

    
18
/**
19
 * <p>Java class for source complex type.
20
 * 
21
 * <p>The following schema fragment specifies the expected content contained within this class.
22
 * 
23
 * <pre>
24
 * &lt;complexType name="source"&gt;
25
 *   &lt;complexContent&gt;
26
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
27
 *       &lt;sequence&gt;
28
 *         &lt;element name="url"&gt;
29
 *           &lt;simpleType&gt;
30
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyURI"&gt;
31
 *             &lt;/restriction&gt;
32
 *           &lt;/simpleType&gt;
33
 *         &lt;/element&gt;
34
 *         &lt;element name="identifier"&gt;
35
 *           &lt;simpleType&gt;
36
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
37
 *             &lt;/restriction&gt;
38
 *           &lt;/simpleType&gt;
39
 *         &lt;/element&gt;
40
 *         &lt;element name="datasetName"&gt;
41
 *           &lt;simpleType&gt;
42
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
43
 *             &lt;/restriction&gt;
44
 *           &lt;/simpleType&gt;
45
 *         &lt;/element&gt;
46
 *         &lt;element name="name"&gt;
47
 *           &lt;simpleType&gt;
48
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
49
 *             &lt;/restriction&gt;
50
 *           &lt;/simpleType&gt;
51
 *         &lt;/element&gt;
52
 *         &lt;element name="title" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
53
 *       &lt;/sequence&gt;
54
 *     &lt;/restriction&gt;
55
 *   &lt;/complexContent&gt;
56
 * &lt;/complexType&gt;
57
 * </pre>
58
 * 
59
 * 
60
 */
61
@XmlAccessorType(XmlAccessType.FIELD)
62
@XmlType(name = "source", propOrder = {
63
    "url",
64
    "identifier",
65
    "datasetName",
66
    "name",
67
    "title"
68
})
69
public class Source {
70

    
71
    @XmlElement(required = true)
72
    protected String url;
73
    @XmlElement(required = true)
74
    protected String identifier;
75
    @XmlElement(required = true)
76
    protected String datasetName;
77
    @XmlElement(required = true)
78
    protected String name;
79
    @XmlElement(required = true)
80
    protected String title;
81

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

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

    
106
    /**
107
     * Gets the value of the identifier property.
108
     * 
109
     * @return
110
     *     possible object is
111
     *     {@link String }
112
     *     
113
     */
114
    public String getIdentifier() {
115
        return identifier;
116
    }
117

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

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

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

    
154
    /**
155
     * Gets the value of the name property.
156
     * 
157
     * @return
158
     *     possible object is
159
     *     {@link String }
160
     *     
161
     */
162
    public String getName() {
163
        return name;
164
    }
165

    
166
    /**
167
     * Sets the value of the name property.
168
     * 
169
     * @param value
170
     *     allowed object is
171
     *     {@link String }
172
     *     
173
     */
174
    public void setName(String value) {
175
        this.name = value;
176
    }
177

    
178
    /**
179
     * Gets the value of the title property.
180
     * 
181
     * @return
182
     *     possible object is
183
     *     {@link String }
184
     *     
185
     */
186
    @ApiModelProperty("The full not atomized source string.")
187
    public String getTitle() {
188
        return title;
189
    }
190

    
191
    /**
192
     * Sets the value of the title property.
193
     * 
194
     * @param value
195
     *     allowed object is
196
     *     {@link String }
197
     *     
198
     */
199
    public void setTitle(String value) {
200
        this.title = value;
201
    }
202

    
203
}
(7-7/13)