Coverage Report - fr.paris.lutece.plugins.releaser.business.jaxb.maven.Organization
 
Classes in this File Line Coverage Branch Coverage Complexity
Organization
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  
  * Specifies the organization that produces this project.
 18  
  * 
 19  
  * <p>Java class for Organization complex type.
 20  
  * 
 21  
  * <p>The following schema fragment specifies the expected content contained within this class.
 22  
  * 
 23  
  * <pre>
 24  
  * &lt;complexType name="Organization">
 25  
  *   &lt;complexContent>
 26  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 27  
  *       &lt;all>
 28  
  *         &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 29  
  *         &lt;element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 30  
  *       &lt;/all>
 31  
  *     &lt;/restriction>
 32  
  *   &lt;/complexContent>
 33  
  * &lt;/complexType>
 34  
  * </pre>
 35  
  * 
 36  
  * 
 37  
  */
 38  
 @XmlAccessorType(XmlAccessType.FIELD)
 39  
 @XmlType(name = "Organization", propOrder = {
 40  
 
 41  
 })
 42  0
 public class Organization {
 43  
 
 44  
     protected String name;
 45  
     protected String url;
 46  
 
 47  
     /**
 48  
      * Gets the value of the name property.
 49  
      * 
 50  
      * @return
 51  
      *     possible object is
 52  
      *     {@link String }
 53  
      *     
 54  
      */
 55  
     public String getName() {
 56  0
         return name;
 57  
     }
 58  
 
 59  
     /**
 60  
      * Sets the value of the name property.
 61  
      * 
 62  
      * @param value
 63  
      *     allowed object is
 64  
      *     {@link String }
 65  
      *     
 66  
      */
 67  
     public void setName(String value) {
 68  0
         this.name = value;
 69  0
     }
 70  
 
 71  
     /**
 72  
      * Gets the value of the url property.
 73  
      * 
 74  
      * @return
 75  
      *     possible object is
 76  
      *     {@link String }
 77  
      *     
 78  
      */
 79  
     public String getUrl() {
 80  0
         return url;
 81  
     }
 82  
 
 83  
     /**
 84  
      * Sets the value of the url property.
 85  
      * 
 86  
      * @param value
 87  
      *     allowed object is
 88  
      *     {@link String }
 89  
      *     
 90  
      */
 91  
     public void setUrl(String value) {
 92  0
         this.url = value;
 93  0
     }
 94  
 
 95  
 }