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