Coverage Report - fr.paris.lutece.plugins.releaser.business.jaxb.maven.License
 
Classes in this File Line Coverage Branch Coverage Complexity
License
0 %
0/13
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  
  *         Describes the licenses for this project.  This is used to generate
 19  
  *         the license page of the project's web site, as well as being taken into consideration in other reporting and
 20  
  *         validation. The licenses listed for the project are that of the project itself, and not of dependencies.
 21  
  *       
 22  
  * 
 23  
  * <p>Java class for License complex type.
 24  
  * 
 25  
  * <p>The following schema fragment specifies the expected content contained within this class.
 26  
  * 
 27  
  * <pre>
 28  
  * &lt;complexType name="License">
 29  
  *   &lt;complexContent>
 30  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 31  
  *       &lt;all>
 32  
  *         &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 33  
  *         &lt;element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 34  
  *         &lt;element name="distribution" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 35  
  *         &lt;element name="comments" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 36  
  *       &lt;/all>
 37  
  *     &lt;/restriction>
 38  
  *   &lt;/complexContent>
 39  
  * &lt;/complexType>
 40  
  * </pre>
 41  
  * 
 42  
  * 
 43  
  */
 44  
 @XmlAccessorType(XmlAccessType.FIELD)
 45  
 @XmlType(name = "License", propOrder = {
 46  
 
 47  
 })
 48  0
 public class License {
 49  
 
 50  
     protected String name;
 51  
     protected String url;
 52  
     protected String distribution;
 53  
     protected String comments;
 54  
 
 55  
     /**
 56  
      * Gets the value of the name property.
 57  
      * 
 58  
      * @return
 59  
      *     possible object is
 60  
      *     {@link String }
 61  
      *     
 62  
      */
 63  
     public String getName() {
 64  0
         return name;
 65  
     }
 66  
 
 67  
     /**
 68  
      * Sets the value of the name property.
 69  
      * 
 70  
      * @param value
 71  
      *     allowed object is
 72  
      *     {@link String }
 73  
      *     
 74  
      */
 75  
     public void setName(String value) {
 76  0
         this.name = 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  
     public String getUrl() {
 88  0
         return url;
 89  
     }
 90  
 
 91  
     /**
 92  
      * Sets the value of the url property.
 93  
      * 
 94  
      * @param value
 95  
      *     allowed object is
 96  
      *     {@link String }
 97  
      *     
 98  
      */
 99  
     public void setUrl(String value) {
 100  0
         this.url = value;
 101  0
     }
 102  
 
 103  
     /**
 104  
      * Gets the value of the distribution property.
 105  
      * 
 106  
      * @return
 107  
      *     possible object is
 108  
      *     {@link String }
 109  
      *     
 110  
      */
 111  
     public String getDistribution() {
 112  0
         return distribution;
 113  
     }
 114  
 
 115  
     /**
 116  
      * Sets the value of the distribution property.
 117  
      * 
 118  
      * @param value
 119  
      *     allowed object is
 120  
      *     {@link String }
 121  
      *     
 122  
      */
 123  
     public void setDistribution(String value) {
 124  0
         this.distribution = value;
 125  0
     }
 126  
 
 127  
     /**
 128  
      * Gets the value of the comments property.
 129  
      * 
 130  
      * @return
 131  
      *     possible object is
 132  
      *     {@link String }
 133  
      *     
 134  
      */
 135  
     public String getComments() {
 136  0
         return comments;
 137  
     }
 138  
 
 139  
     /**
 140  
      * Sets the value of the comments property.
 141  
      * 
 142  
      * @param value
 143  
      *     allowed object is
 144  
      *     {@link String }
 145  
      *     
 146  
      */
 147  
     public void setComments(String value) {
 148  0
         this.comments = value;
 149  0
     }
 150  
 
 151  
 }