Coverage Report - fr.paris.lutece.plugins.releaser.business.jaxb.maven.DistributionManagement
 
Classes in this File Line Coverage Branch Coverage Complexity
DistributionManagement
0 %
0/19
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  
  *         This elements describes all that pertains to distribution for a project.
 19  
  *         It is primarily used for deployment of artifacts and the site
 20  
  *         produced by the build.
 21  
  *       
 22  
  * 
 23  
  * <p>Java class for DistributionManagement complex type.
 24  
  * 
 25  
  * <p>The following schema fragment specifies the expected content contained within this class.
 26  
  * 
 27  
  * <pre>
 28  
  * &lt;complexType name="DistributionManagement">
 29  
  *   &lt;complexContent>
 30  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 31  
  *       &lt;all>
 32  
  *         &lt;element name="repository" type="{http://maven.apache.org/POM/4.0.0}DeploymentRepository" minOccurs="0"/>
 33  
  *         &lt;element name="snapshotRepository" type="{http://maven.apache.org/POM/4.0.0}DeploymentRepository" minOccurs="0"/>
 34  
  *         &lt;element name="site" type="{http://maven.apache.org/POM/4.0.0}Site" minOccurs="0"/>
 35  
  *         &lt;element name="downloadUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 36  
  *         &lt;element name="relocation" type="{http://maven.apache.org/POM/4.0.0}Relocation" minOccurs="0"/>
 37  
  *         &lt;element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 38  
  *       &lt;/all>
 39  
  *     &lt;/restriction>
 40  
  *   &lt;/complexContent>
 41  
  * &lt;/complexType>
 42  
  * </pre>
 43  
  * 
 44  
  * 
 45  
  */
 46  
 @XmlAccessorType(XmlAccessType.FIELD)
 47  
 @XmlType(name = "DistributionManagement", propOrder = {
 48  
 
 49  
 })
 50  0
 public class DistributionManagement {
 51  
 
 52  
     protected DeploymentRepository repository;
 53  
     protected DeploymentRepository snapshotRepository;
 54  
     protected Site site;
 55  
     protected String downloadUrl;
 56  
     protected Relocation relocation;
 57  
     protected String status;
 58  
 
 59  
     /**
 60  
      * Gets the value of the repository property.
 61  
      * 
 62  
      * @return
 63  
      *     possible object is
 64  
      *     {@link DeploymentRepository }
 65  
      *     
 66  
      */
 67  
     public DeploymentRepository getRepository() {
 68  0
         return repository;
 69  
     }
 70  
 
 71  
     /**
 72  
      * Sets the value of the repository property.
 73  
      * 
 74  
      * @param value
 75  
      *     allowed object is
 76  
      *     {@link DeploymentRepository }
 77  
      *     
 78  
      */
 79  
     public void setRepository(DeploymentRepository value) {
 80  0
         this.repository = value;
 81  0
     }
 82  
 
 83  
     /**
 84  
      * Gets the value of the snapshotRepository property.
 85  
      * 
 86  
      * @return
 87  
      *     possible object is
 88  
      *     {@link DeploymentRepository }
 89  
      *     
 90  
      */
 91  
     public DeploymentRepository getSnapshotRepository() {
 92  0
         return snapshotRepository;
 93  
     }
 94  
 
 95  
     /**
 96  
      * Sets the value of the snapshotRepository property.
 97  
      * 
 98  
      * @param value
 99  
      *     allowed object is
 100  
      *     {@link DeploymentRepository }
 101  
      *     
 102  
      */
 103  
     public void setSnapshotRepository(DeploymentRepository value) {
 104  0
         this.snapshotRepository = value;
 105  0
     }
 106  
 
 107  
     /**
 108  
      * Gets the value of the site property.
 109  
      * 
 110  
      * @return
 111  
      *     possible object is
 112  
      *     {@link Site }
 113  
      *     
 114  
      */
 115  
     public Site getSite() {
 116  0
         return site;
 117  
     }
 118  
 
 119  
     /**
 120  
      * Sets the value of the site property.
 121  
      * 
 122  
      * @param value
 123  
      *     allowed object is
 124  
      *     {@link Site }
 125  
      *     
 126  
      */
 127  
     public void setSite(Site value) {
 128  0
         this.site = value;
 129  0
     }
 130  
 
 131  
     /**
 132  
      * Gets the value of the downloadUrl property.
 133  
      * 
 134  
      * @return
 135  
      *     possible object is
 136  
      *     {@link String }
 137  
      *     
 138  
      */
 139  
     public String getDownloadUrl() {
 140  0
         return downloadUrl;
 141  
     }
 142  
 
 143  
     /**
 144  
      * Sets the value of the downloadUrl property.
 145  
      * 
 146  
      * @param value
 147  
      *     allowed object is
 148  
      *     {@link String }
 149  
      *     
 150  
      */
 151  
     public void setDownloadUrl(String value) {
 152  0
         this.downloadUrl = value;
 153  0
     }
 154  
 
 155  
     /**
 156  
      * Gets the value of the relocation property.
 157  
      * 
 158  
      * @return
 159  
      *     possible object is
 160  
      *     {@link Relocation }
 161  
      *     
 162  
      */
 163  
     public Relocation getRelocation() {
 164  0
         return relocation;
 165  
     }
 166  
 
 167  
     /**
 168  
      * Sets the value of the relocation property.
 169  
      * 
 170  
      * @param value
 171  
      *     allowed object is
 172  
      *     {@link Relocation }
 173  
      *     
 174  
      */
 175  
     public void setRelocation(Relocation value) {
 176  0
         this.relocation = value;
 177  0
     }
 178  
 
 179  
     /**
 180  
      * Gets the value of the status property.
 181  
      * 
 182  
      * @return
 183  
      *     possible object is
 184  
      *     {@link String }
 185  
      *     
 186  
      */
 187  
     public String getStatus() {
 188  0
         return status;
 189  
     }
 190  
 
 191  
     /**
 192  
      * Sets the value of the status property.
 193  
      * 
 194  
      * @param value
 195  
      *     allowed object is
 196  
      *     {@link String }
 197  
      *     
 198  
      */
 199  
     public void setStatus(String value) {
 200  0
         this.status = value;
 201  0
     }
 202  
 
 203  
 }