Coverage Report - fr.paris.lutece.plugins.releaser.business.jaxb.maven.DeploymentRepository
 
Classes in this File Line Coverage Branch Coverage Complexity
DeploymentRepository
0 %
0/16
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.XmlElement;
 14  
 import javax.xml.bind.annotation.XmlType;
 15  
 
 16  
 
 17  
 /**
 18  
  * 
 19  
  *         Repository contains the information needed for deploying to the remote repoistory.
 20  
  *       
 21  
  * 
 22  
  * <p>Java class for DeploymentRepository complex type.
 23  
  * 
 24  
  * <p>The following schema fragment specifies the expected content contained within this class.
 25  
  * 
 26  
  * <pre>
 27  
  * &lt;complexType name="DeploymentRepository">
 28  
  *   &lt;complexContent>
 29  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 30  
  *       &lt;all>
 31  
  *         &lt;element name="uniqueVersion" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 32  
  *         &lt;element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 33  
  *         &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 34  
  *         &lt;element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 35  
  *         &lt;element name="layout" 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 = "DeploymentRepository", propOrder = {
 46  
 
 47  
 })
 48  0
 public class DeploymentRepository {
 49  
 
 50  
     @XmlElement(defaultValue = "true")
 51  
     protected Boolean uniqueVersion;
 52  
     protected String id;
 53  
     protected String name;
 54  
     protected String url;
 55  
     @XmlElement(defaultValue = "default")
 56  
     protected String layout;
 57  
 
 58  
     /**
 59  
      * Gets the value of the uniqueVersion property.
 60  
      * 
 61  
      * @return
 62  
      *     possible object is
 63  
      *     {@link Boolean }
 64  
      *     
 65  
      */
 66  
     public Boolean getUniqueVersion() {
 67  0
         return uniqueVersion;
 68  
     }
 69  
 
 70  
     /**
 71  
      * Sets the value of the uniqueVersion property.
 72  
      * 
 73  
      * @param value
 74  
      *     allowed object is
 75  
      *     {@link Boolean }
 76  
      *     
 77  
      */
 78  
     public void setUniqueVersion(Boolean value) {
 79  0
         this.uniqueVersion = value;
 80  0
     }
 81  
 
 82  
     /**
 83  
      * Gets the value of the id property.
 84  
      * 
 85  
      * @return
 86  
      *     possible object is
 87  
      *     {@link String }
 88  
      *     
 89  
      */
 90  
     public String getId() {
 91  0
         return id;
 92  
     }
 93  
 
 94  
     /**
 95  
      * Sets the value of the id property.
 96  
      * 
 97  
      * @param value
 98  
      *     allowed object is
 99  
      *     {@link String }
 100  
      *     
 101  
      */
 102  
     public void setId(String value) {
 103  0
         this.id = value;
 104  0
     }
 105  
 
 106  
     /**
 107  
      * Gets the value of the name property.
 108  
      * 
 109  
      * @return
 110  
      *     possible object is
 111  
      *     {@link String }
 112  
      *     
 113  
      */
 114  
     public String getName() {
 115  0
         return name;
 116  
     }
 117  
 
 118  
     /**
 119  
      * Sets the value of the name property.
 120  
      * 
 121  
      * @param value
 122  
      *     allowed object is
 123  
      *     {@link String }
 124  
      *     
 125  
      */
 126  
     public void setName(String value) {
 127  0
         this.name = value;
 128  0
     }
 129  
 
 130  
     /**
 131  
      * Gets the value of the url property.
 132  
      * 
 133  
      * @return
 134  
      *     possible object is
 135  
      *     {@link String }
 136  
      *     
 137  
      */
 138  
     public String getUrl() {
 139  0
         return url;
 140  
     }
 141  
 
 142  
     /**
 143  
      * Sets the value of the url property.
 144  
      * 
 145  
      * @param value
 146  
      *     allowed object is
 147  
      *     {@link String }
 148  
      *     
 149  
      */
 150  
     public void setUrl(String value) {
 151  0
         this.url = value;
 152  0
     }
 153  
 
 154  
     /**
 155  
      * Gets the value of the layout property.
 156  
      * 
 157  
      * @return
 158  
      *     possible object is
 159  
      *     {@link String }
 160  
      *     
 161  
      */
 162  
     public String getLayout() {
 163  0
         return layout;
 164  
     }
 165  
 
 166  
     /**
 167  
      * Sets the value of the layout property.
 168  
      * 
 169  
      * @param value
 170  
      *     allowed object is
 171  
      *     {@link String }
 172  
      *     
 173  
      */
 174  
     public void setLayout(String value) {
 175  0
         this.layout = value;
 176  0
     }
 177  
 
 178  
 }