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