Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Reporting |
|
| 1.1428571428571428;1,143 | ||||
Reporting$Plugins |
|
| 1.1428571428571428;1,143 |
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 | * Section for management of reports and their configuration. | |
21 | * | |
22 | * <p>Java class for Reporting complex type. | |
23 | * | |
24 | * <p>The following schema fragment specifies the expected content contained within this class. | |
25 | * | |
26 | * <pre> | |
27 | * <complexType name="Reporting"> | |
28 | * <complexContent> | |
29 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
30 | * <all> | |
31 | * <element name="excludeDefaults" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> | |
32 | * <element name="outputDirectory" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
33 | * <element name="plugins" minOccurs="0"> | |
34 | * <complexType> | |
35 | * <complexContent> | |
36 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
37 | * <sequence> | |
38 | * <element name="plugin" type="{http://maven.apache.org/POM/4.0.0}ReportPlugin" maxOccurs="unbounded" minOccurs="0"/> | |
39 | * </sequence> | |
40 | * </restriction> | |
41 | * </complexContent> | |
42 | * </complexType> | |
43 | * </element> | |
44 | * </all> | |
45 | * </restriction> | |
46 | * </complexContent> | |
47 | * </complexType> | |
48 | * </pre> | |
49 | * | |
50 | * | |
51 | */ | |
52 | @XmlAccessorType(XmlAccessType.FIELD) | |
53 | @XmlType(name = "Reporting", propOrder = { | |
54 | ||
55 | }) | |
56 | 0 | public class Reporting { |
57 | ||
58 | @XmlElement(defaultValue = "false") | |
59 | protected Boolean excludeDefaults; | |
60 | protected String outputDirectory; | |
61 | protected Reporting.Plugins plugins; | |
62 | ||
63 | /** | |
64 | * Gets the value of the excludeDefaults property. | |
65 | * | |
66 | * @return | |
67 | * possible object is | |
68 | * {@link Boolean } | |
69 | * | |
70 | */ | |
71 | public Boolean getExcludeDefaults() { | |
72 | 0 | return excludeDefaults; |
73 | } | |
74 | ||
75 | /** | |
76 | * Sets the value of the excludeDefaults property. | |
77 | * | |
78 | * @param value | |
79 | * allowed object is | |
80 | * {@link Boolean } | |
81 | * | |
82 | */ | |
83 | public void setExcludeDefaults(Boolean value) { | |
84 | 0 | this.excludeDefaults = value; |
85 | 0 | } |
86 | ||
87 | /** | |
88 | * Gets the value of the outputDirectory property. | |
89 | * | |
90 | * @return | |
91 | * possible object is | |
92 | * {@link String } | |
93 | * | |
94 | */ | |
95 | public String getOutputDirectory() { | |
96 | 0 | return outputDirectory; |
97 | } | |
98 | ||
99 | /** | |
100 | * Sets the value of the outputDirectory property. | |
101 | * | |
102 | * @param value | |
103 | * allowed object is | |
104 | * {@link String } | |
105 | * | |
106 | */ | |
107 | public void setOutputDirectory(String value) { | |
108 | 0 | this.outputDirectory = value; |
109 | 0 | } |
110 | ||
111 | /** | |
112 | * Gets the value of the plugins property. | |
113 | * | |
114 | * @return | |
115 | * possible object is | |
116 | * {@link Reporting.Plugins } | |
117 | * | |
118 | */ | |
119 | public Reporting.Plugins getPlugins() { | |
120 | 0 | return plugins; |
121 | } | |
122 | ||
123 | /** | |
124 | * Sets the value of the plugins property. | |
125 | * | |
126 | * @param value | |
127 | * allowed object is | |
128 | * {@link Reporting.Plugins } | |
129 | * | |
130 | */ | |
131 | public void setPlugins(Reporting.Plugins value) { | |
132 | 0 | this.plugins = value; |
133 | 0 | } |
134 | ||
135 | ||
136 | /** | |
137 | * <p>Java class for anonymous complex type. | |
138 | * | |
139 | * <p>The following schema fragment specifies the expected content contained within this class. | |
140 | * | |
141 | * <pre> | |
142 | * <complexType> | |
143 | * <complexContent> | |
144 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
145 | * <sequence> | |
146 | * <element name="plugin" type="{http://maven.apache.org/POM/4.0.0}ReportPlugin" maxOccurs="unbounded" minOccurs="0"/> | |
147 | * </sequence> | |
148 | * </restriction> | |
149 | * </complexContent> | |
150 | * </complexType> | |
151 | * </pre> | |
152 | * | |
153 | * | |
154 | */ | |
155 | @XmlAccessorType(XmlAccessType.FIELD) | |
156 | @XmlType(name = "", propOrder = { | |
157 | "plugin" | |
158 | }) | |
159 | 0 | public static class Plugins { |
160 | ||
161 | protected List<ReportPlugin> plugin; | |
162 | ||
163 | /** | |
164 | * Gets the value of the plugin property. | |
165 | * | |
166 | * <p> | |
167 | * This accessor method returns a reference to the live list, | |
168 | * not a snapshot. Therefore any modification you make to the | |
169 | * returned list will be present inside the JAXB object. | |
170 | * This is why there is not a <CODE>set</CODE> method for the plugin property. | |
171 | * | |
172 | * <p> | |
173 | * For example, to add a new item, do as follows: | |
174 | * <pre> | |
175 | * getPlugin().add(newItem); | |
176 | * </pre> | |
177 | * | |
178 | * | |
179 | * <p> | |
180 | * Objects of the following type(s) are allowed in the list | |
181 | * {@link ReportPlugin } | |
182 | * | |
183 | * | |
184 | */ | |
185 | public List<ReportPlugin> getPlugin() { | |
186 | 0 | if (plugin == null) { |
187 | 0 | plugin = new ArrayList<ReportPlugin>(); |
188 | } | |
189 | 0 | return this.plugin; |
190 | } | |
191 | ||
192 | } | |
193 | ||
194 | } |