Coverage Report - fr.paris.lutece.plugins.releaser.business.jaxb.maven.MailingList
 
Classes in this File Line Coverage Branch Coverage Complexity
MailingList
0 %
0/19
N/A
1,077
MailingList$OtherArchives
0 %
0/4
0 %
0/2
1,077
 
 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 java.util.ArrayList;
 12  
 import java.util.List;
 13  
 import javax.xml.bind.annotation.XmlAccessType;
 14  
 import javax.xml.bind.annotation.XmlAccessorType;
 15  
 import javax.xml.bind.annotation.XmlType;
 16  
 
 17  
 
 18  
 /**
 19  
  * 
 20  
  *         This element describes all of the mailing lists associated with
 21  
  *         a project. The auto-generated site references this information.
 22  
  *       
 23  
  * 
 24  
  * <p>Java class for MailingList complex type.
 25  
  * 
 26  
  * <p>The following schema fragment specifies the expected content contained within this class.
 27  
  * 
 28  
  * <pre>
 29  
  * &lt;complexType name="MailingList">
 30  
  *   &lt;complexContent>
 31  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 32  
  *       &lt;all>
 33  
  *         &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 34  
  *         &lt;element name="subscribe" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 35  
  *         &lt;element name="unsubscribe" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 36  
  *         &lt;element name="post" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 37  
  *         &lt;element name="archive" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 38  
  *         &lt;element name="otherArchives" minOccurs="0">
 39  
  *           &lt;complexType>
 40  
  *             &lt;complexContent>
 41  
  *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 42  
  *                 &lt;sequence>
 43  
  *                   &lt;element name="otherArchive" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 44  
  *                 &lt;/sequence>
 45  
  *               &lt;/restriction>
 46  
  *             &lt;/complexContent>
 47  
  *           &lt;/complexType>
 48  
  *         &lt;/element>
 49  
  *       &lt;/all>
 50  
  *     &lt;/restriction>
 51  
  *   &lt;/complexContent>
 52  
  * &lt;/complexType>
 53  
  * </pre>
 54  
  * 
 55  
  * 
 56  
  */
 57  
 @XmlAccessorType(XmlAccessType.FIELD)
 58  
 @XmlType(name = "MailingList", propOrder = {
 59  
 
 60  
 })
 61  0
 public class MailingList {
 62  
 
 63  
     protected String name;
 64  
     protected String subscribe;
 65  
     protected String unsubscribe;
 66  
     protected String post;
 67  
     protected String archive;
 68  
     protected MailingList.OtherArchives otherArchives;
 69  
 
 70  
     /**
 71  
      * Gets the value of the name property.
 72  
      * 
 73  
      * @return
 74  
      *     possible object is
 75  
      *     {@link String }
 76  
      *     
 77  
      */
 78  
     public String getName() {
 79  0
         return name;
 80  
     }
 81  
 
 82  
     /**
 83  
      * Sets the value of the name property.
 84  
      * 
 85  
      * @param value
 86  
      *     allowed object is
 87  
      *     {@link String }
 88  
      *     
 89  
      */
 90  
     public void setName(String value) {
 91  0
         this.name = value;
 92  0
     }
 93  
 
 94  
     /**
 95  
      * Gets the value of the subscribe property.
 96  
      * 
 97  
      * @return
 98  
      *     possible object is
 99  
      *     {@link String }
 100  
      *     
 101  
      */
 102  
     public String getSubscribe() {
 103  0
         return subscribe;
 104  
     }
 105  
 
 106  
     /**
 107  
      * Sets the value of the subscribe property.
 108  
      * 
 109  
      * @param value
 110  
      *     allowed object is
 111  
      *     {@link String }
 112  
      *     
 113  
      */
 114  
     public void setSubscribe(String value) {
 115  0
         this.subscribe = value;
 116  0
     }
 117  
 
 118  
     /**
 119  
      * Gets the value of the unsubscribe property.
 120  
      * 
 121  
      * @return
 122  
      *     possible object is
 123  
      *     {@link String }
 124  
      *     
 125  
      */
 126  
     public String getUnsubscribe() {
 127  0
         return unsubscribe;
 128  
     }
 129  
 
 130  
     /**
 131  
      * Sets the value of the unsubscribe property.
 132  
      * 
 133  
      * @param value
 134  
      *     allowed object is
 135  
      *     {@link String }
 136  
      *     
 137  
      */
 138  
     public void setUnsubscribe(String value) {
 139  0
         this.unsubscribe = value;
 140  0
     }
 141  
 
 142  
     /**
 143  
      * Gets the value of the post property.
 144  
      * 
 145  
      * @return
 146  
      *     possible object is
 147  
      *     {@link String }
 148  
      *     
 149  
      */
 150  
     public String getPost() {
 151  0
         return post;
 152  
     }
 153  
 
 154  
     /**
 155  
      * Sets the value of the post property.
 156  
      * 
 157  
      * @param value
 158  
      *     allowed object is
 159  
      *     {@link String }
 160  
      *     
 161  
      */
 162  
     public void setPost(String value) {
 163  0
         this.post = value;
 164  0
     }
 165  
 
 166  
     /**
 167  
      * Gets the value of the archive property.
 168  
      * 
 169  
      * @return
 170  
      *     possible object is
 171  
      *     {@link String }
 172  
      *     
 173  
      */
 174  
     public String getArchive() {
 175  0
         return archive;
 176  
     }
 177  
 
 178  
     /**
 179  
      * Sets the value of the archive property.
 180  
      * 
 181  
      * @param value
 182  
      *     allowed object is
 183  
      *     {@link String }
 184  
      *     
 185  
      */
 186  
     public void setArchive(String value) {
 187  0
         this.archive = value;
 188  0
     }
 189  
 
 190  
     /**
 191  
      * Gets the value of the otherArchives property.
 192  
      * 
 193  
      * @return
 194  
      *     possible object is
 195  
      *     {@link MailingList.OtherArchives }
 196  
      *     
 197  
      */
 198  
     public MailingList.OtherArchives getOtherArchives() {
 199  0
         return otherArchives;
 200  
     }
 201  
 
 202  
     /**
 203  
      * Sets the value of the otherArchives property.
 204  
      * 
 205  
      * @param value
 206  
      *     allowed object is
 207  
      *     {@link MailingList.OtherArchives }
 208  
      *     
 209  
      */
 210  
     public void setOtherArchives(MailingList.OtherArchives value) {
 211  0
         this.otherArchives = value;
 212  0
     }
 213  
 
 214  
 
 215  
     /**
 216  
      * <p>Java class for anonymous complex type.
 217  
      * 
 218  
      * <p>The following schema fragment specifies the expected content contained within this class.
 219  
      * 
 220  
      * <pre>
 221  
      * &lt;complexType>
 222  
      *   &lt;complexContent>
 223  
      *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 224  
      *       &lt;sequence>
 225  
      *         &lt;element name="otherArchive" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 226  
      *       &lt;/sequence>
 227  
      *     &lt;/restriction>
 228  
      *   &lt;/complexContent>
 229  
      * &lt;/complexType>
 230  
      * </pre>
 231  
      * 
 232  
      * 
 233  
      */
 234  
     @XmlAccessorType(XmlAccessType.FIELD)
 235  
     @XmlType(name = "", propOrder = {
 236  
         "otherArchive"
 237  
     })
 238  0
     public static class OtherArchives {
 239  
 
 240  
         protected List<String> otherArchive;
 241  
 
 242  
         /**
 243  
          * Gets the value of the otherArchive property.
 244  
          * 
 245  
          * <p>
 246  
          * This accessor method returns a reference to the live list,
 247  
          * not a snapshot. Therefore any modification you make to the
 248  
          * returned list will be present inside the JAXB object.
 249  
          * This is why there is not a <CODE>set</CODE> method for the otherArchive property.
 250  
          * 
 251  
          * <p>
 252  
          * For example, to add a new item, do as follows:
 253  
          * <pre>
 254  
          *    getOtherArchive().add(newItem);
 255  
          * </pre>
 256  
          * 
 257  
          * 
 258  
          * <p>
 259  
          * Objects of the following type(s) are allowed in the list
 260  
          * {@link String }
 261  
          * 
 262  
          * 
 263  
          */
 264  
         public List<String> getOtherArchive() {
 265  0
             if (otherArchive == null) {
 266  0
                 otherArchive = new ArrayList<String>();
 267  
             }
 268  0
             return this.otherArchive;
 269  
         }
 270  
 
 271  
     }
 272  
 
 273  
 }