Coverage Report - org.owasp.dependencycheck.jaxb.pom.generated.ActivationFile
 
Classes in this File Line Coverage Branch Coverage Complexity
ActivationFile
0%
0/7
N/A
1
 
 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 javax.annotation.Generated;
 12  
 import javax.xml.bind.annotation.XmlAccessType;
 13  
 import javax.xml.bind.annotation.XmlAccessorType;
 14  
 import javax.xml.bind.annotation.XmlType;
 15  
 
 16  
 
 17  
 /**
 18  
  *
 19  
  *         This is the file specification used to activate the profile. The missing value will be the location
 20  
  *         of a file that needs to exist, and if it doesn't the profile will be activated.  On the other hand exists will test
 21  
  *         for the existence of the file and if it is there the profile will be activated.
 22  
  *
 23  
  *
 24  
  * <p>Java class for ActivationFile complex type.
 25  
  *
 26  
  * <p>The following schema fragment specifies the expected content contained within this class.
 27  
  *
 28  
  * <pre>
 29  
  * &lt;complexType name="ActivationFile">
 30  
  *   &lt;complexContent>
 31  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 32  
  *       &lt;all>
 33  
  *         &lt;element name="missing" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 34  
  *         &lt;element name="exists" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 35  
  *       &lt;/all>
 36  
  *     &lt;/restriction>
 37  
  *   &lt;/complexContent>
 38  
  * &lt;/complexType>
 39  
  * </pre>
 40  
  *
 41  
  *
 42  
  */
 43  
 @XmlAccessorType(XmlAccessType.FIELD)
 44  
 @XmlType(name = "ActivationFile", propOrder = {
 45  
 
 46  
 })
 47  
 @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")
 48  0
 public class ActivationFile {
 49  
 
 50  
     @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")
 51  
     protected String missing;
 52  
     @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")
 53  
     protected String exists;
 54  
 
 55  
     /**
 56  
      * Gets the value of the missing property.
 57  
      *
 58  
      * @return
 59  
      *     possible object is
 60  
      *     {@link String }
 61  
      *
 62  
      */
 63  
     @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")
 64  
     public String getMissing() {
 65  0
         return missing;
 66  
     }
 67  
 
 68  
     /**
 69  
      * Sets the value of the missing property.
 70  
      *
 71  
      * @param value
 72  
      *     allowed object is
 73  
      *     {@link String }
 74  
      *
 75  
      */
 76  
     @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")
 77  
     public void setMissing(String value) {
 78  0
         this.missing = value;
 79  0
     }
 80  
 
 81  
     /**
 82  
      * Gets the value of the exists property.
 83  
      *
 84  
      * @return
 85  
      *     possible object is
 86  
      *     {@link String }
 87  
      *
 88  
      */
 89  
     @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")
 90  
     public String getExists() {
 91  0
         return exists;
 92  
     }
 93  
 
 94  
     /**
 95  
      * Sets the value of the exists property.
 96  
      *
 97  
      * @param value
 98  
      *     allowed object is
 99  
      *     {@link String }
 100  
      *
 101  
      */
 102  
     @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")
 103  
     public void setExists(String value) {
 104  0
         this.exists = value;
 105  0
     }
 106  
 
 107  
 }