Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Dependency |
|
| 1.0526315789473684;1,053 | ||||
Dependency$Exclusions |
|
| 1.0526315789473684;1,053 |
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.XmlElement; | |
16 | import javax.xml.bind.annotation.XmlType; | |
17 | ||
18 | ||
19 | /** | |
20 | * 3.0.0+ | |
21 | * | |
22 | * <p>Java class for Dependency complex type. | |
23 | * | |
24 | * <p>The following schema fragment specifies the expected content contained within this class. | |
25 | * | |
26 | * <pre> | |
27 | * <complexType name="Dependency"> | |
28 | * <complexContent> | |
29 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
30 | * <all> | |
31 | * <element name="groupId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
32 | * <element name="artifactId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
33 | * <element name="version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
34 | * <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
35 | * <element name="classifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
36 | * <element name="scope" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
37 | * <element name="systemPath" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
38 | * <element name="exclusions" minOccurs="0"> | |
39 | * <complexType> | |
40 | * <complexContent> | |
41 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
42 | * <sequence> | |
43 | * <element name="exclusion" type="{http://maven.apache.org/POM/4.0.0}Exclusion" maxOccurs="unbounded" minOccurs="0"/> | |
44 | * </sequence> | |
45 | * </restriction> | |
46 | * </complexContent> | |
47 | * </complexType> | |
48 | * </element> | |
49 | * <element name="optional" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> | |
50 | * </all> | |
51 | * </restriction> | |
52 | * </complexContent> | |
53 | * </complexType> | |
54 | * </pre> | |
55 | * | |
56 | * | |
57 | */ | |
58 | @XmlAccessorType(XmlAccessType.FIELD) | |
59 | @XmlType(name = "Dependency", propOrder = { | |
60 | ||
61 | }) | |
62 | 29 | public class Dependency { |
63 | ||
64 | protected String groupId; | |
65 | protected String artifactId; | |
66 | protected String version; | |
67 | @XmlElement(defaultValue = "jar") | |
68 | protected String type; | |
69 | protected String classifier; | |
70 | protected String scope; | |
71 | protected String systemPath; | |
72 | protected Dependency.Exclusions exclusions; | |
73 | @XmlElement(defaultValue = "false") | |
74 | protected Boolean optional; | |
75 | ||
76 | /** | |
77 | * Gets the value of the groupId property. | |
78 | * | |
79 | * @return | |
80 | * possible object is | |
81 | * {@link String } | |
82 | * | |
83 | */ | |
84 | public String getGroupId() { | |
85 | 28 | return groupId; |
86 | } | |
87 | ||
88 | /** | |
89 | * Sets the value of the groupId property. | |
90 | * | |
91 | * @param value | |
92 | * allowed object is | |
93 | * {@link String } | |
94 | * | |
95 | */ | |
96 | public void setGroupId(String value) { | |
97 | 0 | this.groupId = value; |
98 | 0 | } |
99 | ||
100 | /** | |
101 | * Gets the value of the artifactId property. | |
102 | * | |
103 | * @return | |
104 | * possible object is | |
105 | * {@link String } | |
106 | * | |
107 | */ | |
108 | public String getArtifactId() { | |
109 | 28 | return artifactId; |
110 | } | |
111 | ||
112 | /** | |
113 | * Sets the value of the artifactId property. | |
114 | * | |
115 | * @param value | |
116 | * allowed object is | |
117 | * {@link String } | |
118 | * | |
119 | */ | |
120 | public void setArtifactId(String value) { | |
121 | 0 | this.artifactId = value; |
122 | 0 | } |
123 | ||
124 | /** | |
125 | * Gets the value of the version property. | |
126 | * | |
127 | * @return | |
128 | * possible object is | |
129 | * {@link String } | |
130 | * | |
131 | */ | |
132 | public String getVersion() { | |
133 | 28 | return version; |
134 | } | |
135 | ||
136 | /** | |
137 | * Sets the value of the version property. | |
138 | * | |
139 | * @param value | |
140 | * allowed object is | |
141 | * {@link String } | |
142 | * | |
143 | */ | |
144 | public void setVersion(String value) { | |
145 | 0 | this.version = value; |
146 | 0 | } |
147 | ||
148 | /** | |
149 | * Gets the value of the type property. | |
150 | * | |
151 | * @return | |
152 | * possible object is | |
153 | * {@link String } | |
154 | * | |
155 | */ | |
156 | public String getType() { | |
157 | 28 | return type; |
158 | } | |
159 | ||
160 | /** | |
161 | * Sets the value of the type property. | |
162 | * | |
163 | * @param value | |
164 | * allowed object is | |
165 | * {@link String } | |
166 | * | |
167 | */ | |
168 | public void setType(String value) { | |
169 | 0 | this.type = value; |
170 | 0 | } |
171 | ||
172 | /** | |
173 | * Gets the value of the classifier property. | |
174 | * | |
175 | * @return | |
176 | * possible object is | |
177 | * {@link String } | |
178 | * | |
179 | */ | |
180 | public String getClassifier() { | |
181 | 0 | return classifier; |
182 | } | |
183 | ||
184 | /** | |
185 | * Sets the value of the classifier property. | |
186 | * | |
187 | * @param value | |
188 | * allowed object is | |
189 | * {@link String } | |
190 | * | |
191 | */ | |
192 | public void setClassifier(String value) { | |
193 | 0 | this.classifier = value; |
194 | 0 | } |
195 | ||
196 | /** | |
197 | * Gets the value of the scope property. | |
198 | * | |
199 | * @return | |
200 | * possible object is | |
201 | * {@link String } | |
202 | * | |
203 | */ | |
204 | public String getScope() { | |
205 | 0 | return scope; |
206 | } | |
207 | ||
208 | /** | |
209 | * Sets the value of the scope property. | |
210 | * | |
211 | * @param value | |
212 | * allowed object is | |
213 | * {@link String } | |
214 | * | |
215 | */ | |
216 | public void setScope(String value) { | |
217 | 0 | this.scope = value; |
218 | 0 | } |
219 | ||
220 | /** | |
221 | * Gets the value of the systemPath property. | |
222 | * | |
223 | * @return | |
224 | * possible object is | |
225 | * {@link String } | |
226 | * | |
227 | */ | |
228 | public String getSystemPath() { | |
229 | 0 | return systemPath; |
230 | } | |
231 | ||
232 | /** | |
233 | * Sets the value of the systemPath property. | |
234 | * | |
235 | * @param value | |
236 | * allowed object is | |
237 | * {@link String } | |
238 | * | |
239 | */ | |
240 | public void setSystemPath(String value) { | |
241 | 0 | this.systemPath = value; |
242 | 0 | } |
243 | ||
244 | /** | |
245 | * Gets the value of the exclusions property. | |
246 | * | |
247 | * @return | |
248 | * possible object is | |
249 | * {@link Dependency.Exclusions } | |
250 | * | |
251 | */ | |
252 | public Dependency.Exclusions getExclusions() { | |
253 | 0 | return exclusions; |
254 | } | |
255 | ||
256 | /** | |
257 | * Sets the value of the exclusions property. | |
258 | * | |
259 | * @param value | |
260 | * allowed object is | |
261 | * {@link Dependency.Exclusions } | |
262 | * | |
263 | */ | |
264 | public void setExclusions(Dependency.Exclusions value) { | |
265 | 0 | this.exclusions = value; |
266 | 0 | } |
267 | ||
268 | /** | |
269 | * Gets the value of the optional property. | |
270 | * | |
271 | * @return | |
272 | * possible object is | |
273 | * {@link Boolean } | |
274 | * | |
275 | */ | |
276 | public Boolean getOptional() { | |
277 | 0 | return optional; |
278 | } | |
279 | ||
280 | /** | |
281 | * Sets the value of the optional property. | |
282 | * | |
283 | * @param value | |
284 | * allowed object is | |
285 | * {@link Boolean } | |
286 | * | |
287 | */ | |
288 | public void setOptional(Boolean value) { | |
289 | 0 | this.optional = value; |
290 | 0 | } |
291 | ||
292 | ||
293 | /** | |
294 | * <p>Java class for anonymous complex type. | |
295 | * | |
296 | * <p>The following schema fragment specifies the expected content contained within this class. | |
297 | * | |
298 | * <pre> | |
299 | * <complexType> | |
300 | * <complexContent> | |
301 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
302 | * <sequence> | |
303 | * <element name="exclusion" type="{http://maven.apache.org/POM/4.0.0}Exclusion" maxOccurs="unbounded" minOccurs="0"/> | |
304 | * </sequence> | |
305 | * </restriction> | |
306 | * </complexContent> | |
307 | * </complexType> | |
308 | * </pre> | |
309 | * | |
310 | * | |
311 | */ | |
312 | @XmlAccessorType(XmlAccessType.FIELD) | |
313 | @XmlType(name = "", propOrder = { | |
314 | "exclusion" | |
315 | }) | |
316 | 0 | public static class Exclusions { |
317 | ||
318 | protected List<Exclusion> exclusion; | |
319 | ||
320 | /** | |
321 | * Gets the value of the exclusion property. | |
322 | * | |
323 | * <p> | |
324 | * This accessor method returns a reference to the live list, | |
325 | * not a snapshot. Therefore any modification you make to the | |
326 | * returned list will be present inside the JAXB object. | |
327 | * This is why there is not a <CODE>set</CODE> method for the exclusion property. | |
328 | * | |
329 | * <p> | |
330 | * For example, to add a new item, do as follows: | |
331 | * <pre> | |
332 | * getExclusion().add(newItem); | |
333 | * </pre> | |
334 | * | |
335 | * | |
336 | * <p> | |
337 | * Objects of the following type(s) are allowed in the list | |
338 | * {@link Exclusion } | |
339 | * | |
340 | * | |
341 | */ | |
342 | public List<Exclusion> getExclusion() { | |
343 | 0 | if (exclusion == null) { |
344 | 0 | exclusion = new ArrayList<Exclusion>(); |
345 | } | |
346 | 0 | return this.exclusion; |
347 | } | |
348 | ||
349 | } | |
350 | ||
351 | } |