Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Resource |
|
| 1.1666666666666667;1,167 | ||||
Resource$Excludes |
|
| 1.1666666666666667;1,167 | ||||
Resource$Includes |
|
| 1.1666666666666667;1,167 |
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 | * | |
21 | * This element describes all of the classpath resources associated with a project or | |
22 | * unit tests. | |
23 | * | |
24 | * | |
25 | * <p>Java class for Resource complex type. | |
26 | * | |
27 | * <p>The following schema fragment specifies the expected content contained within this class. | |
28 | * | |
29 | * <pre> | |
30 | * <complexType name="Resource"> | |
31 | * <complexContent> | |
32 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
33 | * <all> | |
34 | * <element name="targetPath" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
35 | * <element name="filtering" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> | |
36 | * <element name="directory" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
37 | * <element name="includes" minOccurs="0"> | |
38 | * <complexType> | |
39 | * <complexContent> | |
40 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
41 | * <sequence> | |
42 | * <element name="include" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> | |
43 | * </sequence> | |
44 | * </restriction> | |
45 | * </complexContent> | |
46 | * </complexType> | |
47 | * </element> | |
48 | * <element name="excludes" minOccurs="0"> | |
49 | * <complexType> | |
50 | * <complexContent> | |
51 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
52 | * <sequence> | |
53 | * <element name="exclude" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> | |
54 | * </sequence> | |
55 | * </restriction> | |
56 | * </complexContent> | |
57 | * </complexType> | |
58 | * </element> | |
59 | * </all> | |
60 | * </restriction> | |
61 | * </complexContent> | |
62 | * </complexType> | |
63 | * </pre> | |
64 | * | |
65 | * | |
66 | */ | |
67 | @XmlAccessorType(XmlAccessType.FIELD) | |
68 | @XmlType(name = "Resource", propOrder = { | |
69 | ||
70 | }) | |
71 | 0 | public class Resource { |
72 | ||
73 | protected String targetPath; | |
74 | @XmlElement(defaultValue = "false") | |
75 | protected Boolean filtering; | |
76 | protected String directory; | |
77 | protected Resource.Includes includes; | |
78 | protected Resource.Excludes excludes; | |
79 | ||
80 | /** | |
81 | * Gets the value of the targetPath property. | |
82 | * | |
83 | * @return | |
84 | * possible object is | |
85 | * {@link String } | |
86 | * | |
87 | */ | |
88 | public String getTargetPath() { | |
89 | 0 | return targetPath; |
90 | } | |
91 | ||
92 | /** | |
93 | * Sets the value of the targetPath property. | |
94 | * | |
95 | * @param value | |
96 | * allowed object is | |
97 | * {@link String } | |
98 | * | |
99 | */ | |
100 | public void setTargetPath(String value) { | |
101 | 0 | this.targetPath = value; |
102 | 0 | } |
103 | ||
104 | /** | |
105 | * Gets the value of the filtering property. | |
106 | * | |
107 | * @return | |
108 | * possible object is | |
109 | * {@link Boolean } | |
110 | * | |
111 | */ | |
112 | public Boolean getFiltering() { | |
113 | 0 | return filtering; |
114 | } | |
115 | ||
116 | /** | |
117 | * Sets the value of the filtering property. | |
118 | * | |
119 | * @param value | |
120 | * allowed object is | |
121 | * {@link Boolean } | |
122 | * | |
123 | */ | |
124 | public void setFiltering(Boolean value) { | |
125 | 0 | this.filtering = value; |
126 | 0 | } |
127 | ||
128 | /** | |
129 | * Gets the value of the directory property. | |
130 | * | |
131 | * @return | |
132 | * possible object is | |
133 | * {@link String } | |
134 | * | |
135 | */ | |
136 | public String getDirectory() { | |
137 | 0 | return directory; |
138 | } | |
139 | ||
140 | /** | |
141 | * Sets the value of the directory property. | |
142 | * | |
143 | * @param value | |
144 | * allowed object is | |
145 | * {@link String } | |
146 | * | |
147 | */ | |
148 | public void setDirectory(String value) { | |
149 | 0 | this.directory = value; |
150 | 0 | } |
151 | ||
152 | /** | |
153 | * Gets the value of the includes property. | |
154 | * | |
155 | * @return | |
156 | * possible object is | |
157 | * {@link Resource.Includes } | |
158 | * | |
159 | */ | |
160 | public Resource.Includes getIncludes() { | |
161 | 0 | return includes; |
162 | } | |
163 | ||
164 | /** | |
165 | * Sets the value of the includes property. | |
166 | * | |
167 | * @param value | |
168 | * allowed object is | |
169 | * {@link Resource.Includes } | |
170 | * | |
171 | */ | |
172 | public void setIncludes(Resource.Includes value) { | |
173 | 0 | this.includes = value; |
174 | 0 | } |
175 | ||
176 | /** | |
177 | * Gets the value of the excludes property. | |
178 | * | |
179 | * @return | |
180 | * possible object is | |
181 | * {@link Resource.Excludes } | |
182 | * | |
183 | */ | |
184 | public Resource.Excludes getExcludes() { | |
185 | 0 | return excludes; |
186 | } | |
187 | ||
188 | /** | |
189 | * Sets the value of the excludes property. | |
190 | * | |
191 | * @param value | |
192 | * allowed object is | |
193 | * {@link Resource.Excludes } | |
194 | * | |
195 | */ | |
196 | public void setExcludes(Resource.Excludes value) { | |
197 | 0 | this.excludes = value; |
198 | 0 | } |
199 | ||
200 | ||
201 | /** | |
202 | * <p>Java class for anonymous complex type. | |
203 | * | |
204 | * <p>The following schema fragment specifies the expected content contained within this class. | |
205 | * | |
206 | * <pre> | |
207 | * <complexType> | |
208 | * <complexContent> | |
209 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
210 | * <sequence> | |
211 | * <element name="exclude" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> | |
212 | * </sequence> | |
213 | * </restriction> | |
214 | * </complexContent> | |
215 | * </complexType> | |
216 | * </pre> | |
217 | * | |
218 | * | |
219 | */ | |
220 | @XmlAccessorType(XmlAccessType.FIELD) | |
221 | @XmlType(name = "", propOrder = { | |
222 | "exclude" | |
223 | }) | |
224 | 0 | public static class Excludes { |
225 | ||
226 | protected List<String> exclude; | |
227 | ||
228 | /** | |
229 | * Gets the value of the exclude property. | |
230 | * | |
231 | * <p> | |
232 | * This accessor method returns a reference to the live list, | |
233 | * not a snapshot. Therefore any modification you make to the | |
234 | * returned list will be present inside the JAXB object. | |
235 | * This is why there is not a <CODE>set</CODE> method for the exclude property. | |
236 | * | |
237 | * <p> | |
238 | * For example, to add a new item, do as follows: | |
239 | * <pre> | |
240 | * getExclude().add(newItem); | |
241 | * </pre> | |
242 | * | |
243 | * | |
244 | * <p> | |
245 | * Objects of the following type(s) are allowed in the list | |
246 | * {@link String } | |
247 | * | |
248 | * | |
249 | */ | |
250 | public List<String> getExclude() { | |
251 | 0 | if (exclude == null) { |
252 | 0 | exclude = new ArrayList<String>(); |
253 | } | |
254 | 0 | return this.exclude; |
255 | } | |
256 | ||
257 | } | |
258 | ||
259 | ||
260 | /** | |
261 | * <p>Java class for anonymous complex type. | |
262 | * | |
263 | * <p>The following schema fragment specifies the expected content contained within this class. | |
264 | * | |
265 | * <pre> | |
266 | * <complexType> | |
267 | * <complexContent> | |
268 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
269 | * <sequence> | |
270 | * <element name="include" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> | |
271 | * </sequence> | |
272 | * </restriction> | |
273 | * </complexContent> | |
274 | * </complexType> | |
275 | * </pre> | |
276 | * | |
277 | * | |
278 | */ | |
279 | @XmlAccessorType(XmlAccessType.FIELD) | |
280 | @XmlType(name = "", propOrder = { | |
281 | "include" | |
282 | }) | |
283 | 0 | public static class Includes { |
284 | ||
285 | protected List<String> include; | |
286 | ||
287 | /** | |
288 | * Gets the value of the include property. | |
289 | * | |
290 | * <p> | |
291 | * This accessor method returns a reference to the live list, | |
292 | * not a snapshot. Therefore any modification you make to the | |
293 | * returned list will be present inside the JAXB object. | |
294 | * This is why there is not a <CODE>set</CODE> method for the include property. | |
295 | * | |
296 | * <p> | |
297 | * For example, to add a new item, do as follows: | |
298 | * <pre> | |
299 | * getInclude().add(newItem); | |
300 | * </pre> | |
301 | * | |
302 | * | |
303 | * <p> | |
304 | * Objects of the following type(s) are allowed in the list | |
305 | * {@link String } | |
306 | * | |
307 | * | |
308 | */ | |
309 | public List<String> getInclude() { | |
310 | 0 | if (include == null) { |
311 | 0 | include = new ArrayList<String>(); |
312 | } | |
313 | 0 | return this.include; |
314 | } | |
315 | ||
316 | } | |
317 | ||
318 | } |