From 3c4989f5ca39f3f6580bee5d6f98b9d6259a2998 Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Tue, 7 Apr 2015 06:56:58 -0400 Subject: [PATCH] removed jaxb Former-commit-id: 9b590ecce2ad7a2c960aaf5c6d3b9825c2059045 --- .../pom/generated/DependencyManagement.java | 150 ------------------ 1 file changed, 150 deletions(-) delete mode 100644 dependency-check-core/src/main/java/org/owasp/dependencycheck/jaxb/pom/generated/DependencyManagement.java diff --git a/dependency-check-core/src/main/java/org/owasp/dependencycheck/jaxb/pom/generated/DependencyManagement.java b/dependency-check-core/src/main/java/org/owasp/dependencycheck/jaxb/pom/generated/DependencyManagement.java deleted file mode 100644 index a9d729a27..000000000 --- a/dependency-check-core/src/main/java/org/owasp/dependencycheck/jaxb/pom/generated/DependencyManagement.java +++ /dev/null @@ -1,150 +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.XmlType; - - -/** - * - * Section for management of default dependency information for use in a group of POMs. - * - * - *

Java class for DependencyManagement complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DependencyManagement">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dependencies" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="dependency" type="{http://maven.apache.org/POM/4.0.0}Dependency" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DependencyManagement", 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 DependencyManagement { - - @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 DependencyManagement.Dependencies dependencies; - - /** - * Gets the value of the dependencies property. - * - * @return - * possible object is - * {@link DependencyManagement.Dependencies } - * - */ - @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 DependencyManagement.Dependencies getDependencies() { - return dependencies; - } - - /** - * Sets the value of the dependencies property. - * - * @param value - * allowed object is - * {@link DependencyManagement.Dependencies } - * - */ - @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 setDependencies(DependencyManagement.Dependencies value) { - this.dependencies = 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="dependency" type="{http://maven.apache.org/POM/4.0.0}Dependency" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "dependency" - }) - @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 Dependencies { - - @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 dependency; - - /** - * Gets the value of the dependency property. - * - *

- * 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 dependency property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getDependency().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Dependency } - * - * - */ - @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 getDependency() { - if (dependency == null) { - dependency = new ArrayList(); - } - return this.dependency; - } - - } - -}