diff --git a/dependency-check-core/src/main/java/org/owasp/dependencycheck/jaxb/pom/generated/ActivationFile.java b/dependency-check-core/src/main/java/org/owasp/dependencycheck/jaxb/pom/generated/ActivationFile.java deleted file mode 100644 index c994b7973..000000000 --- a/dependency-check-core/src/main/java/org/owasp/dependencycheck/jaxb/pom/generated/ActivationFile.java +++ /dev/null @@ -1,107 +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 javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * - * This is the file specification used to activate the profile. The missing value will be the location - * of a file that needs to exist, and if it doesn't the profile will be activated. On the other hand exists will test - * for the existence of the file and if it is there the profile will be activated. - * - * - *
Java class for ActivationFile complex type. - * - *
The following schema fragment specifies the expected content contained within this class. - * - *
- * <complexType name="ActivationFile">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <all>
- * <element name="missing" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="exists" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </all>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "ActivationFile", 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 ActivationFile {
-
- @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 missing;
- @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 exists;
-
- /**
- * Gets the value of the missing 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 getMissing() {
- return missing;
- }
-
- /**
- * Sets the value of the missing 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 setMissing(String value) {
- this.missing = value;
- }
-
- /**
- * Gets the value of the exists 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 getExists() {
- return exists;
- }
-
- /**
- * Sets the value of the exists 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 setExists(String value) {
- this.exists = value;
- }
-
-}