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