diff --git a/dependency-check-core/src/main/java/org/owasp/dependencycheck/jaxb/pom/generated/Resource.java b/dependency-check-core/src/main/java/org/owasp/dependencycheck/jaxb/pom/generated/Resource.java deleted file mode 100644 index b3acc1d14..000000000 --- a/dependency-check-core/src/main/java/org/owasp/dependencycheck/jaxb/pom/generated/Resource.java +++ /dev/null @@ -1,341 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST -// - - -package org.owasp.dependencycheck.jaxb.pom.generated; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * - * This element describes all of the classpath resources associated with a project or - * unit tests. - * - * - *
Java class for Resource complex type. - * - *
The following schema fragment specifies the expected content contained within this class. - * - *
- * <complexType name="Resource">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <all>
- * <element name="targetPath" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="filtering" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- * <element name="directory" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="includes" minOccurs="0">
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="include" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </element>
- * <element name="excludes" minOccurs="0">
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="exclude" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </element>
- * </all>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "Resource", propOrder = {
-
-})
-@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")
-public class Resource {
-
- @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")
- protected String targetPath;
- @XmlElement(defaultValue = "false")
- @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")
- protected Boolean filtering;
- @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")
- protected String directory;
- @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")
- protected Resource.Includes includes;
- @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")
- protected Resource.Excludes excludes;
-
- /**
- * Gets the value of the targetPath property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- @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")
- public String getTargetPath() {
- return targetPath;
- }
-
- /**
- * Sets the value of the targetPath property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- @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")
- public void setTargetPath(String value) {
- this.targetPath = value;
- }
-
- /**
- * Gets the value of the filtering property.
- *
- * @return
- * possible object is
- * {@link Boolean }
- *
- */
- @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")
- public Boolean isFiltering() {
- return filtering;
- }
-
- /**
- * Sets the value of the filtering property.
- *
- * @param value
- * allowed object is
- * {@link Boolean }
- *
- */
- @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")
- public void setFiltering(Boolean value) {
- this.filtering = value;
- }
-
- /**
- * Gets the value of the directory property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- @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")
- public String getDirectory() {
- return directory;
- }
-
- /**
- * Sets the value of the directory property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- @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")
- public void setDirectory(String value) {
- this.directory = value;
- }
-
- /**
- * Gets the value of the includes property.
- *
- * @return
- * possible object is
- * {@link Resource.Includes }
- *
- */
- @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")
- public Resource.Includes getIncludes() {
- return includes;
- }
-
- /**
- * Sets the value of the includes property.
- *
- * @param value
- * allowed object is
- * {@link Resource.Includes }
- *
- */
- @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")
- public void setIncludes(Resource.Includes value) {
- this.includes = value;
- }
-
- /**
- * Gets the value of the excludes property.
- *
- * @return
- * possible object is
- * {@link Resource.Excludes }
- *
- */
- @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")
- public Resource.Excludes getExcludes() {
- return excludes;
- }
-
- /**
- * Sets the value of the excludes property.
- *
- * @param value
- * allowed object is
- * {@link Resource.Excludes }
- *
- */
- @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")
- public void setExcludes(Resource.Excludes value) {
- this.excludes = value;
- }
-
-
- /**
- * Java class for anonymous complex type. - * - *
The following schema fragment specifies the expected content contained within this class. - * - *
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="exclude" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "", propOrder = {
- "exclude"
- })
- @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")
- public static class Excludes {
-
- @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")
- protected List
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the exclude property.
- *
- *
- * For example, to add a new item, do as follows: - *
- * getExclude().add(newItem); - *- * - * - *
- * Objects of the following type(s) are allowed in the list
- * {@link String }
- *
- *
- */
- @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")
- public List Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link String }
- *
- *
- */
- @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")
- public List
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="include" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "", propOrder = {
- "include"
- })
- @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")
- public static class Includes {
-
- @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")
- protected Listset method for the include property.
- *
- *
- * getInclude().add(newItem);
- *
- *
- *
- *