| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| IssueManagement |
|
| 1.0;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 | * Information about the issue tracking (or bug tracking) system used to manage this project. | |
| 20 | * | |
| 21 | * | |
| 22 | * <p>Java class for IssueManagement complex type. | |
| 23 | * | |
| 24 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 25 | * | |
| 26 | * <pre> | |
| 27 | * <complexType name="IssueManagement"> | |
| 28 | * <complexContent> | |
| 29 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
| 30 | * <all> | |
| 31 | * <element name="system" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
| 32 | * <element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
| 33 | * </all> | |
| 34 | * </restriction> | |
| 35 | * </complexContent> | |
| 36 | * </complexType> | |
| 37 | * </pre> | |
| 38 | * | |
| 39 | * | |
| 40 | */ | |
| 41 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 42 | @XmlType(name = "IssueManagement", propOrder = { | |
| 43 | ||
| 44 | }) | |
| 45 | @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") | |
| 46 | 2 | public class IssueManagement { |
| 47 | ||
| 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 system; | |
| 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 url; | |
| 52 | ||
| 53 | /** | |
| 54 | * Gets the value of the system property. | |
| 55 | * | |
| 56 | * @return | |
| 57 | * possible object is | |
| 58 | * {@link String } | |
| 59 | * | |
| 60 | */ | |
| 61 | @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") | |
| 62 | public String getSystem() { | |
| 63 | 0 | return system; |
| 64 | } | |
| 65 | ||
| 66 | /** | |
| 67 | * Sets the value of the system property. | |
| 68 | * | |
| 69 | * @param value | |
| 70 | * allowed object is | |
| 71 | * {@link String } | |
| 72 | * | |
| 73 | */ | |
| 74 | @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") | |
| 75 | public void setSystem(String value) { | |
| 76 | 0 | this.system = value; |
| 77 | 0 | } |
| 78 | ||
| 79 | /** | |
| 80 | * Gets the value of the url property. | |
| 81 | * | |
| 82 | * @return | |
| 83 | * possible object is | |
| 84 | * {@link String } | |
| 85 | * | |
| 86 | */ | |
| 87 | @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") | |
| 88 | public String getUrl() { | |
| 89 | 0 | return url; |
| 90 | } | |
| 91 | ||
| 92 | /** | |
| 93 | * Sets the value of the url property. | |
| 94 | * | |
| 95 | * @param value | |
| 96 | * allowed object is | |
| 97 | * {@link String } | |
| 98 | * | |
| 99 | */ | |
| 100 | @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") | |
| 101 | public void setUrl(String value) { | |
| 102 | 0 | this.url = value; |
| 103 | 0 | } |
| 104 | ||
| 105 | } |