Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Developer |
|
| 1.1;1,1 | ||||
Developer$Properties |
|
| 1.1;1,1 | ||||
Developer$Roles |
|
| 1.1;1,1 |
1 | // | |
2 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 | |
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: 2017.05.11 at 06:51:22 PM CEST | |
6 | // | |
7 | ||
8 | ||
9 | package fr.paris.lutece.plugins.releaser.business.jaxb.maven; | |
10 | ||
11 | import java.util.ArrayList; | |
12 | import java.util.List; | |
13 | import javax.xml.bind.annotation.XmlAccessType; | |
14 | import javax.xml.bind.annotation.XmlAccessorType; | |
15 | import javax.xml.bind.annotation.XmlAnyElement; | |
16 | import javax.xml.bind.annotation.XmlType; | |
17 | import org.w3c.dom.Element; | |
18 | ||
19 | ||
20 | /** | |
21 | * | |
22 | * Information about one of the committers on this project. | |
23 | * | |
24 | * | |
25 | * <p>Java class for Developer complex type. | |
26 | * | |
27 | * <p>The following schema fragment specifies the expected content contained within this class. | |
28 | * | |
29 | * <pre> | |
30 | * <complexType name="Developer"> | |
31 | * <complexContent> | |
32 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
33 | * <all> | |
34 | * <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
35 | * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
36 | * <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
37 | * <element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
38 | * <element name="organization" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
39 | * <element name="organizationUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
40 | * <element name="roles" minOccurs="0"> | |
41 | * <complexType> | |
42 | * <complexContent> | |
43 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
44 | * <sequence> | |
45 | * <element name="role" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> | |
46 | * </sequence> | |
47 | * </restriction> | |
48 | * </complexContent> | |
49 | * </complexType> | |
50 | * </element> | |
51 | * <element name="timezone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
52 | * <element name="properties" minOccurs="0"> | |
53 | * <complexType> | |
54 | * <complexContent> | |
55 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
56 | * <sequence> | |
57 | * <any processContents='skip' maxOccurs="unbounded" minOccurs="0"/> | |
58 | * </sequence> | |
59 | * </restriction> | |
60 | * </complexContent> | |
61 | * </complexType> | |
62 | * </element> | |
63 | * </all> | |
64 | * </restriction> | |
65 | * </complexContent> | |
66 | * </complexType> | |
67 | * </pre> | |
68 | * | |
69 | * | |
70 | */ | |
71 | @XmlAccessorType(XmlAccessType.FIELD) | |
72 | @XmlType(name = "Developer", propOrder = { | |
73 | ||
74 | }) | |
75 | 0 | public class Developer { |
76 | ||
77 | protected String id; | |
78 | protected String name; | |
79 | protected String email; | |
80 | protected String url; | |
81 | protected String organization; | |
82 | protected String organizationUrl; | |
83 | protected Developer.Roles roles; | |
84 | protected String timezone; | |
85 | protected Developer.Properties properties; | |
86 | ||
87 | /** | |
88 | * Gets the value of the id property. | |
89 | * | |
90 | * @return | |
91 | * possible object is | |
92 | * {@link String } | |
93 | * | |
94 | */ | |
95 | public String getId() { | |
96 | 0 | return id; |
97 | } | |
98 | ||
99 | /** | |
100 | * Sets the value of the id property. | |
101 | * | |
102 | * @param value | |
103 | * allowed object is | |
104 | * {@link String } | |
105 | * | |
106 | */ | |
107 | public void setId(String value) { | |
108 | 0 | this.id = value; |
109 | 0 | } |
110 | ||
111 | /** | |
112 | * Gets the value of the name property. | |
113 | * | |
114 | * @return | |
115 | * possible object is | |
116 | * {@link String } | |
117 | * | |
118 | */ | |
119 | public String getName() { | |
120 | 0 | return name; |
121 | } | |
122 | ||
123 | /** | |
124 | * Sets the value of the name property. | |
125 | * | |
126 | * @param value | |
127 | * allowed object is | |
128 | * {@link String } | |
129 | * | |
130 | */ | |
131 | public void setName(String value) { | |
132 | 0 | this.name = value; |
133 | 0 | } |
134 | ||
135 | /** | |
136 | * Gets the value of the email property. | |
137 | * | |
138 | * @return | |
139 | * possible object is | |
140 | * {@link String } | |
141 | * | |
142 | */ | |
143 | public String getEmail() { | |
144 | 0 | return email; |
145 | } | |
146 | ||
147 | /** | |
148 | * Sets the value of the email property. | |
149 | * | |
150 | * @param value | |
151 | * allowed object is | |
152 | * {@link String } | |
153 | * | |
154 | */ | |
155 | public void setEmail(String value) { | |
156 | 0 | this.email = value; |
157 | 0 | } |
158 | ||
159 | /** | |
160 | * Gets the value of the url property. | |
161 | * | |
162 | * @return | |
163 | * possible object is | |
164 | * {@link String } | |
165 | * | |
166 | */ | |
167 | public String getUrl() { | |
168 | 0 | return url; |
169 | } | |
170 | ||
171 | /** | |
172 | * Sets the value of the url property. | |
173 | * | |
174 | * @param value | |
175 | * allowed object is | |
176 | * {@link String } | |
177 | * | |
178 | */ | |
179 | public void setUrl(String value) { | |
180 | 0 | this.url = value; |
181 | 0 | } |
182 | ||
183 | /** | |
184 | * Gets the value of the organization property. | |
185 | * | |
186 | * @return | |
187 | * possible object is | |
188 | * {@link String } | |
189 | * | |
190 | */ | |
191 | public String getOrganization() { | |
192 | 0 | return organization; |
193 | } | |
194 | ||
195 | /** | |
196 | * Sets the value of the organization property. | |
197 | * | |
198 | * @param value | |
199 | * allowed object is | |
200 | * {@link String } | |
201 | * | |
202 | */ | |
203 | public void setOrganization(String value) { | |
204 | 0 | this.organization = value; |
205 | 0 | } |
206 | ||
207 | /** | |
208 | * Gets the value of the organizationUrl property. | |
209 | * | |
210 | * @return | |
211 | * possible object is | |
212 | * {@link String } | |
213 | * | |
214 | */ | |
215 | public String getOrganizationUrl() { | |
216 | 0 | return organizationUrl; |
217 | } | |
218 | ||
219 | /** | |
220 | * Sets the value of the organizationUrl property. | |
221 | * | |
222 | * @param value | |
223 | * allowed object is | |
224 | * {@link String } | |
225 | * | |
226 | */ | |
227 | public void setOrganizationUrl(String value) { | |
228 | 0 | this.organizationUrl = value; |
229 | 0 | } |
230 | ||
231 | /** | |
232 | * Gets the value of the roles property. | |
233 | * | |
234 | * @return | |
235 | * possible object is | |
236 | * {@link Developer.Roles } | |
237 | * | |
238 | */ | |
239 | public Developer.Roles getRoles() { | |
240 | 0 | return roles; |
241 | } | |
242 | ||
243 | /** | |
244 | * Sets the value of the roles property. | |
245 | * | |
246 | * @param value | |
247 | * allowed object is | |
248 | * {@link Developer.Roles } | |
249 | * | |
250 | */ | |
251 | public void setRoles(Developer.Roles value) { | |
252 | 0 | this.roles = value; |
253 | 0 | } |
254 | ||
255 | /** | |
256 | * Gets the value of the timezone property. | |
257 | * | |
258 | * @return | |
259 | * possible object is | |
260 | * {@link String } | |
261 | * | |
262 | */ | |
263 | public String getTimezone() { | |
264 | 0 | return timezone; |
265 | } | |
266 | ||
267 | /** | |
268 | * Sets the value of the timezone property. | |
269 | * | |
270 | * @param value | |
271 | * allowed object is | |
272 | * {@link String } | |
273 | * | |
274 | */ | |
275 | public void setTimezone(String value) { | |
276 | 0 | this.timezone = value; |
277 | 0 | } |
278 | ||
279 | /** | |
280 | * Gets the value of the properties property. | |
281 | * | |
282 | * @return | |
283 | * possible object is | |
284 | * {@link Developer.Properties } | |
285 | * | |
286 | */ | |
287 | public Developer.Properties getProperties() { | |
288 | 0 | return properties; |
289 | } | |
290 | ||
291 | /** | |
292 | * Sets the value of the properties property. | |
293 | * | |
294 | * @param value | |
295 | * allowed object is | |
296 | * {@link Developer.Properties } | |
297 | * | |
298 | */ | |
299 | public void setProperties(Developer.Properties value) { | |
300 | 0 | this.properties = value; |
301 | 0 | } |
302 | ||
303 | ||
304 | /** | |
305 | * <p>Java class for anonymous complex type. | |
306 | * | |
307 | * <p>The following schema fragment specifies the expected content contained within this class. | |
308 | * | |
309 | * <pre> | |
310 | * <complexType> | |
311 | * <complexContent> | |
312 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
313 | * <sequence> | |
314 | * <any processContents='skip' maxOccurs="unbounded" minOccurs="0"/> | |
315 | * </sequence> | |
316 | * </restriction> | |
317 | * </complexContent> | |
318 | * </complexType> | |
319 | * </pre> | |
320 | * | |
321 | * | |
322 | */ | |
323 | @XmlAccessorType(XmlAccessType.FIELD) | |
324 | @XmlType(name = "", propOrder = { | |
325 | "any" | |
326 | }) | |
327 | 0 | public static class Properties { |
328 | ||
329 | @XmlAnyElement | |
330 | protected List<Element> any; | |
331 | ||
332 | /** | |
333 | * Gets the value of the any property. | |
334 | * | |
335 | * <p> | |
336 | * This accessor method returns a reference to the live list, | |
337 | * not a snapshot. Therefore any modification you make to the | |
338 | * returned list will be present inside the JAXB object. | |
339 | * This is why there is not a <CODE>set</CODE> method for the any property. | |
340 | * | |
341 | * <p> | |
342 | * For example, to add a new item, do as follows: | |
343 | * <pre> | |
344 | * getAny().add(newItem); | |
345 | * </pre> | |
346 | * | |
347 | * | |
348 | * <p> | |
349 | * Objects of the following type(s) are allowed in the list | |
350 | * {@link Element } | |
351 | * | |
352 | * | |
353 | */ | |
354 | public List<Element> getAny() { | |
355 | 0 | if (any == null) { |
356 | 0 | any = new ArrayList<Element>(); |
357 | } | |
358 | 0 | return this.any; |
359 | } | |
360 | ||
361 | } | |
362 | ||
363 | ||
364 | /** | |
365 | * <p>Java class for anonymous complex type. | |
366 | * | |
367 | * <p>The following schema fragment specifies the expected content contained within this class. | |
368 | * | |
369 | * <pre> | |
370 | * <complexType> | |
371 | * <complexContent> | |
372 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
373 | * <sequence> | |
374 | * <element name="role" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> | |
375 | * </sequence> | |
376 | * </restriction> | |
377 | * </complexContent> | |
378 | * </complexType> | |
379 | * </pre> | |
380 | * | |
381 | * | |
382 | */ | |
383 | @XmlAccessorType(XmlAccessType.FIELD) | |
384 | @XmlType(name = "", propOrder = { | |
385 | "role" | |
386 | }) | |
387 | 0 | public static class Roles { |
388 | ||
389 | protected List<String> role; | |
390 | ||
391 | /** | |
392 | * Gets the value of the role property. | |
393 | * | |
394 | * <p> | |
395 | * This accessor method returns a reference to the live list, | |
396 | * not a snapshot. Therefore any modification you make to the | |
397 | * returned list will be present inside the JAXB object. | |
398 | * This is why there is not a <CODE>set</CODE> method for the role property. | |
399 | * | |
400 | * <p> | |
401 | * For example, to add a new item, do as follows: | |
402 | * <pre> | |
403 | * getRole().add(newItem); | |
404 | * </pre> | |
405 | * | |
406 | * | |
407 | * <p> | |
408 | * Objects of the following type(s) are allowed in the list | |
409 | * {@link String } | |
410 | * | |
411 | * | |
412 | */ | |
413 | public List<String> getRole() { | |
414 | 0 | if (role == null) { |
415 | 0 | role = new ArrayList<String>(); |
416 | } | |
417 | 0 | return this.role; |
418 | } | |
419 | ||
420 | } | |
421 | ||
422 | } |