Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
PluginExecution |
|
| 1.1666666666666667;1,167 | ||||
PluginExecution$Configuration |
|
| 1.1666666666666667;1,167 | ||||
PluginExecution$Goals |
|
| 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.XmlAnyElement; | |
16 | import javax.xml.bind.annotation.XmlElement; | |
17 | import javax.xml.bind.annotation.XmlType; | |
18 | import org.w3c.dom.Element; | |
19 | ||
20 | ||
21 | /** | |
22 | * 4.0.0 | |
23 | * | |
24 | * <p>Java class for PluginExecution complex type. | |
25 | * | |
26 | * <p>The following schema fragment specifies the expected content contained within this class. | |
27 | * | |
28 | * <pre> | |
29 | * <complexType name="PluginExecution"> | |
30 | * <complexContent> | |
31 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
32 | * <all> | |
33 | * <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
34 | * <element name="phase" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
35 | * <element name="goals" minOccurs="0"> | |
36 | * <complexType> | |
37 | * <complexContent> | |
38 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
39 | * <sequence> | |
40 | * <element name="goal" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> | |
41 | * </sequence> | |
42 | * </restriction> | |
43 | * </complexContent> | |
44 | * </complexType> | |
45 | * </element> | |
46 | * <element name="inherited" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
47 | * <element name="configuration" minOccurs="0"> | |
48 | * <complexType> | |
49 | * <complexContent> | |
50 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
51 | * <sequence> | |
52 | * <any processContents='skip' maxOccurs="unbounded" minOccurs="0"/> | |
53 | * </sequence> | |
54 | * </restriction> | |
55 | * </complexContent> | |
56 | * </complexType> | |
57 | * </element> | |
58 | * </all> | |
59 | * </restriction> | |
60 | * </complexContent> | |
61 | * </complexType> | |
62 | * </pre> | |
63 | * | |
64 | * | |
65 | */ | |
66 | @XmlAccessorType(XmlAccessType.FIELD) | |
67 | @XmlType(name = "PluginExecution", propOrder = { | |
68 | ||
69 | }) | |
70 | 1 | public class PluginExecution { |
71 | ||
72 | @XmlElement(defaultValue = "default") | |
73 | protected String id; | |
74 | protected String phase; | |
75 | protected PluginExecution.Goals goals; | |
76 | protected String inherited; | |
77 | protected PluginExecution.Configuration configuration; | |
78 | ||
79 | /** | |
80 | * Gets the value of the id property. | |
81 | * | |
82 | * @return | |
83 | * possible object is | |
84 | * {@link String } | |
85 | * | |
86 | */ | |
87 | public String getId() { | |
88 | 0 | return id; |
89 | } | |
90 | ||
91 | /** | |
92 | * Sets the value of the id property. | |
93 | * | |
94 | * @param value | |
95 | * allowed object is | |
96 | * {@link String } | |
97 | * | |
98 | */ | |
99 | public void setId(String value) { | |
100 | 0 | this.id = value; |
101 | 0 | } |
102 | ||
103 | /** | |
104 | * Gets the value of the phase property. | |
105 | * | |
106 | * @return | |
107 | * possible object is | |
108 | * {@link String } | |
109 | * | |
110 | */ | |
111 | public String getPhase() { | |
112 | 0 | return phase; |
113 | } | |
114 | ||
115 | /** | |
116 | * Sets the value of the phase property. | |
117 | * | |
118 | * @param value | |
119 | * allowed object is | |
120 | * {@link String } | |
121 | * | |
122 | */ | |
123 | public void setPhase(String value) { | |
124 | 0 | this.phase = value; |
125 | 0 | } |
126 | ||
127 | /** | |
128 | * Gets the value of the goals property. | |
129 | * | |
130 | * @return | |
131 | * possible object is | |
132 | * {@link PluginExecution.Goals } | |
133 | * | |
134 | */ | |
135 | public PluginExecution.Goals getGoals() { | |
136 | 0 | return goals; |
137 | } | |
138 | ||
139 | /** | |
140 | * Sets the value of the goals property. | |
141 | * | |
142 | * @param value | |
143 | * allowed object is | |
144 | * {@link PluginExecution.Goals } | |
145 | * | |
146 | */ | |
147 | public void setGoals(PluginExecution.Goals value) { | |
148 | 0 | this.goals = value; |
149 | 0 | } |
150 | ||
151 | /** | |
152 | * Gets the value of the inherited property. | |
153 | * | |
154 | * @return | |
155 | * possible object is | |
156 | * {@link String } | |
157 | * | |
158 | */ | |
159 | public String getInherited() { | |
160 | 0 | return inherited; |
161 | } | |
162 | ||
163 | /** | |
164 | * Sets the value of the inherited property. | |
165 | * | |
166 | * @param value | |
167 | * allowed object is | |
168 | * {@link String } | |
169 | * | |
170 | */ | |
171 | public void setInherited(String value) { | |
172 | 0 | this.inherited = value; |
173 | 0 | } |
174 | ||
175 | /** | |
176 | * Gets the value of the configuration property. | |
177 | * | |
178 | * @return | |
179 | * possible object is | |
180 | * {@link PluginExecution.Configuration } | |
181 | * | |
182 | */ | |
183 | public PluginExecution.Configuration getConfiguration() { | |
184 | 0 | return configuration; |
185 | } | |
186 | ||
187 | /** | |
188 | * Sets the value of the configuration property. | |
189 | * | |
190 | * @param value | |
191 | * allowed object is | |
192 | * {@link PluginExecution.Configuration } | |
193 | * | |
194 | */ | |
195 | public void setConfiguration(PluginExecution.Configuration value) { | |
196 | 0 | this.configuration = value; |
197 | 0 | } |
198 | ||
199 | ||
200 | /** | |
201 | * <p>Java class for anonymous complex type. | |
202 | * | |
203 | * <p>The following schema fragment specifies the expected content contained within this class. | |
204 | * | |
205 | * <pre> | |
206 | * <complexType> | |
207 | * <complexContent> | |
208 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
209 | * <sequence> | |
210 | * <any processContents='skip' maxOccurs="unbounded" minOccurs="0"/> | |
211 | * </sequence> | |
212 | * </restriction> | |
213 | * </complexContent> | |
214 | * </complexType> | |
215 | * </pre> | |
216 | * | |
217 | * | |
218 | */ | |
219 | @XmlAccessorType(XmlAccessType.FIELD) | |
220 | @XmlType(name = "", propOrder = { | |
221 | "any" | |
222 | }) | |
223 | 1 | public static class Configuration { |
224 | ||
225 | @XmlAnyElement | |
226 | protected List<Element> any; | |
227 | ||
228 | /** | |
229 | * Gets the value of the any 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 any property. | |
236 | * | |
237 | * <p> | |
238 | * For example, to add a new item, do as follows: | |
239 | * <pre> | |
240 | * getAny().add(newItem); | |
241 | * </pre> | |
242 | * | |
243 | * | |
244 | * <p> | |
245 | * Objects of the following type(s) are allowed in the list | |
246 | * {@link Element } | |
247 | * | |
248 | * | |
249 | */ | |
250 | public List<Element> getAny() { | |
251 | 0 | if (any == null) { |
252 | 0 | any = new ArrayList<Element>(); |
253 | } | |
254 | 0 | return this.any; |
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="goal" 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 | "goal" | |
282 | }) | |
283 | 1 | public static class Goals { |
284 | ||
285 | protected List<String> goal; | |
286 | ||
287 | /** | |
288 | * Gets the value of the goal 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 goal property. | |
295 | * | |
296 | * <p> | |
297 | * For example, to add a new item, do as follows: | |
298 | * <pre> | |
299 | * getGoal().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> getGoal() { | |
310 | 0 | if (goal == null) { |
311 | 0 | goal = new ArrayList<String>(); |
312 | } | |
313 | 0 | return this.goal; |
314 | } | |
315 | ||
316 | } | |
317 | ||
318 | } |