Coverage Report - org.owasp.dependencycheck.jaxb.pom.generated.Exclusion
 
Classes in this File Line Coverage Branch Coverage Complexity
Exclusion
14%
1/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  
  *  4.0.0
 19  
  *
 20  
  * <p>Java class for Exclusion complex type.
 21  
  *
 22  
  * <p>The following schema fragment specifies the expected content contained within this class.
 23  
  *
 24  
  * <pre>
 25  
  * &lt;complexType name="Exclusion">
 26  
  *   &lt;complexContent>
 27  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 28  
  *       &lt;all>
 29  
  *         &lt;element name="artifactId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 30  
  *         &lt;element name="groupId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 31  
  *       &lt;/all>
 32  
  *     &lt;/restriction>
 33  
  *   &lt;/complexContent>
 34  
  * &lt;/complexType>
 35  
  * </pre>
 36  
  *
 37  
  *
 38  
  */
 39  
 @XmlAccessorType(XmlAccessType.FIELD)
 40  
 @XmlType(name = "Exclusion", propOrder = {
 41  
 
 42  
 })
 43  
 @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")
 44  5
 public class Exclusion {
 45  
 
 46  
     @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")
 47  
     protected String artifactId;
 48  
     @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")
 49  
     protected String groupId;
 50  
 
 51  
     /**
 52  
      * Gets the value of the artifactId property.
 53  
      *
 54  
      * @return
 55  
      *     possible object is
 56  
      *     {@link String }
 57  
      *
 58  
      */
 59  
     @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")
 60  
     public String getArtifactId() {
 61  0
         return artifactId;
 62  
     }
 63  
 
 64  
     /**
 65  
      * Sets the value of the artifactId property.
 66  
      *
 67  
      * @param value
 68  
      *     allowed object is
 69  
      *     {@link String }
 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  
     public void setArtifactId(String value) {
 74  0
         this.artifactId = value;
 75  0
     }
 76  
 
 77  
     /**
 78  
      * Gets the value of the groupId property.
 79  
      *
 80  
      * @return
 81  
      *     possible object is
 82  
      *     {@link String }
 83  
      *
 84  
      */
 85  
     @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")
 86  
     public String getGroupId() {
 87  0
         return groupId;
 88  
     }
 89  
 
 90  
     /**
 91  
      * Sets the value of the groupId property.
 92  
      *
 93  
      * @param value
 94  
      *     allowed object is
 95  
      *     {@link String }
 96  
      *
 97  
      */
 98  
     @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")
 99  
     public void setGroupId(String value) {
 100  0
         this.groupId = value;
 101  0
     }
 102  
 
 103  
 }