Coverage Report - fr.paris.lutece.plugins.releaser.business.jaxb.maven.Site
 
Classes in this File Line Coverage Branch Coverage Complexity
Site
0 %
0/10
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  
  *          Contains the information needed for deploying websites.
 19  
  *       
 20  
  * 
 21  
  * <p>Java class for Site complex type.
 22  
  * 
 23  
  * <p>The following schema fragment specifies the expected content contained within this class.
 24  
  * 
 25  
  * <pre>
 26  
  * &lt;complexType name="Site">
 27  
  *   &lt;complexContent>
 28  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 29  
  *       &lt;all>
 30  
  *         &lt;element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 31  
  *         &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 32  
  *         &lt;element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 33  
  *       &lt;/all>
 34  
  *     &lt;/restriction>
 35  
  *   &lt;/complexContent>
 36  
  * &lt;/complexType>
 37  
  * </pre>
 38  
  * 
 39  
  * 
 40  
  */
 41  
 @XmlAccessorType(XmlAccessType.FIELD)
 42  
 @XmlType(name = "Site", propOrder = {
 43  
 
 44  
 })
 45  0
 public class Site {
 46  
 
 47  
     protected String id;
 48  
     protected String name;
 49  
     protected String url;
 50  
 
 51  
     /**
 52  
      * Gets the value of the id property.
 53  
      * 
 54  
      * @return
 55  
      *     possible object is
 56  
      *     {@link String }
 57  
      *     
 58  
      */
 59  
     public String getId() {
 60  0
         return id;
 61  
     }
 62  
 
 63  
     /**
 64  
      * Sets the value of the id property.
 65  
      * 
 66  
      * @param value
 67  
      *     allowed object is
 68  
      *     {@link String }
 69  
      *     
 70  
      */
 71  
     public void setId(String value) {
 72  0
         this.id = value;
 73  0
     }
 74  
 
 75  
     /**
 76  
      * Gets the value of the name property.
 77  
      * 
 78  
      * @return
 79  
      *     possible object is
 80  
      *     {@link String }
 81  
      *     
 82  
      */
 83  
     public String getName() {
 84  0
         return name;
 85  
     }
 86  
 
 87  
     /**
 88  
      * Sets the value of the name property.
 89  
      * 
 90  
      * @param value
 91  
      *     allowed object is
 92  
      *     {@link String }
 93  
      *     
 94  
      */
 95  
     public void setName(String value) {
 96  0
         this.name = value;
 97  0
     }
 98  
 
 99  
     /**
 100  
      * Gets the value of the url property.
 101  
      * 
 102  
      * @return
 103  
      *     possible object is
 104  
      *     {@link String }
 105  
      *     
 106  
      */
 107  
     public String getUrl() {
 108  0
         return url;
 109  
     }
 110  
 
 111  
     /**
 112  
      * Sets the value of the url property.
 113  
      * 
 114  
      * @param value
 115  
      *     allowed object is
 116  
      *     {@link String }
 117  
      *     
 118  
      */
 119  
     public void setUrl(String value) {
 120  0
         this.url = value;
 121  0
     }
 122  
 
 123  
 }