Coverage Report - fr.paris.lutece.plugins.releaser.business.jaxb.maven.IssueManagement
 
Classes in this File Line Coverage Branch Coverage Complexity
IssueManagement
0 %
0/7
N/A
1
 
 1  
 //
 2  
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 
 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: 2017.05.11 at 06:51:22 PM CEST 
 6  
 //
 7  
 
 8  
 
 9  
 package fr.paris.lutece.plugins.releaser.business.jaxb.maven;
 10  
 
 11  
 import javax.xml.bind.annotation.XmlAccessType;
 12  
 import javax.xml.bind.annotation.XmlAccessorType;
 13  
 import javax.xml.bind.annotation.XmlType;
 14  
 
 15  
 
 16  
 /**
 17  
  * 
 18  
  *         Information about the issue tracking (or bug tracking) system used to manage this project.
 19  
  *       
 20  
  * 
 21  
  * <p>Java class for IssueManagement complex type.
 22  
  * 
 23  
  * <p>The following schema fragment specifies the expected content contained within this class.
 24  
  * 
 25  
  * <pre>
 26  
  * &lt;complexType name="IssueManagement">
 27  
  *   &lt;complexContent>
 28  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 29  
  *       &lt;all>
 30  
  *         &lt;element name="system" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 31  
  *         &lt;element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 32  
  *       &lt;/all>
 33  
  *     &lt;/restriction>
 34  
  *   &lt;/complexContent>
 35  
  * &lt;/complexType>
 36  
  * </pre>
 37  
  * 
 38  
  * 
 39  
  */
 40  
 @XmlAccessorType(XmlAccessType.FIELD)
 41  
 @XmlType(name = "IssueManagement", propOrder = {
 42  
 
 43  
 })
 44  0
 public class IssueManagement {
 45  
 
 46  
     protected String system;
 47  
     protected String url;
 48  
 
 49  
     /**
 50  
      * Gets the value of the system property.
 51  
      * 
 52  
      * @return
 53  
      *     possible object is
 54  
      *     {@link String }
 55  
      *     
 56  
      */
 57  
     public String getSystem() {
 58  0
         return system;
 59  
     }
 60  
 
 61  
     /**
 62  
      * Sets the value of the system property.
 63  
      * 
 64  
      * @param value
 65  
      *     allowed object is
 66  
      *     {@link String }
 67  
      *     
 68  
      */
 69  
     public void setSystem(String value) {
 70  0
         this.system = value;
 71  0
     }
 72  
 
 73  
     /**
 74  
      * Gets the value of the url property.
 75  
      * 
 76  
      * @return
 77  
      *     possible object is
 78  
      *     {@link String }
 79  
      *     
 80  
      */
 81  
     public String getUrl() {
 82  0
         return url;
 83  
     }
 84  
 
 85  
     /**
 86  
      * Sets the value of the url property.
 87  
      * 
 88  
      * @param value
 89  
      *     allowed object is
 90  
      *     {@link String }
 91  
      *     
 92  
      */
 93  
     public void setUrl(String value) {
 94  0
         this.url = value;
 95  0
     }
 96  
 
 97  
 }