Coverage Report - fr.paris.lutece.plugins.releaser.business.jaxb.maven.CiManagement
 
Classes in this File Line Coverage Branch Coverage Complexity
CiManagement
0 %
0/10
N/A
1,143
CiManagement$Notifiers
0 %
0/4
0 %
0/2
1,143
 
 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  
  *  4.0.0
 20  
  * 
 21  
  * <p>Java class for CiManagement complex type.
 22  
  * 
 23  
  * <p>The following schema fragment specifies the expected content contained within this class.
 24  
  * 
 25  
  * <pre>
 26  
  * &lt;complexType name="CiManagement">
 27  
  *   &lt;complexContent>
 28  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 29  
  *       &lt;all>
 30  
  *         &lt;element name="system" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 31  
  *         &lt;element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 32  
  *         &lt;element name="notifiers" minOccurs="0">
 33  
  *           &lt;complexType>
 34  
  *             &lt;complexContent>
 35  
  *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 36  
  *                 &lt;sequence>
 37  
  *                   &lt;element name="notifier" type="{http://maven.apache.org/POM/4.0.0}Notifier" maxOccurs="unbounded" minOccurs="0"/>
 38  
  *                 &lt;/sequence>
 39  
  *               &lt;/restriction>
 40  
  *             &lt;/complexContent>
 41  
  *           &lt;/complexType>
 42  
  *         &lt;/element>
 43  
  *       &lt;/all>
 44  
  *     &lt;/restriction>
 45  
  *   &lt;/complexContent>
 46  
  * &lt;/complexType>
 47  
  * </pre>
 48  
  * 
 49  
  * 
 50  
  */
 51  
 @XmlAccessorType(XmlAccessType.FIELD)
 52  
 @XmlType(name = "CiManagement", propOrder = {
 53  
 
 54  
 })
 55  0
 public class CiManagement {
 56  
 
 57  
     protected String system;
 58  
     protected String url;
 59  
     protected CiManagement.Notifiers notifiers;
 60  
 
 61  
     /**
 62  
      * Gets the value of the system property.
 63  
      * 
 64  
      * @return
 65  
      *     possible object is
 66  
      *     {@link String }
 67  
      *     
 68  
      */
 69  
     public String getSystem() {
 70  0
         return system;
 71  
     }
 72  
 
 73  
     /**
 74  
      * Sets the value of the system property.
 75  
      * 
 76  
      * @param value
 77  
      *     allowed object is
 78  
      *     {@link String }
 79  
      *     
 80  
      */
 81  
     public void setSystem(String value) {
 82  0
         this.system = value;
 83  0
     }
 84  
 
 85  
     /**
 86  
      * Gets the value of the url property.
 87  
      * 
 88  
      * @return
 89  
      *     possible object is
 90  
      *     {@link String }
 91  
      *     
 92  
      */
 93  
     public String getUrl() {
 94  0
         return url;
 95  
     }
 96  
 
 97  
     /**
 98  
      * Sets the value of the url property.
 99  
      * 
 100  
      * @param value
 101  
      *     allowed object is
 102  
      *     {@link String }
 103  
      *     
 104  
      */
 105  
     public void setUrl(String value) {
 106  0
         this.url = value;
 107  0
     }
 108  
 
 109  
     /**
 110  
      * Gets the value of the notifiers property.
 111  
      * 
 112  
      * @return
 113  
      *     possible object is
 114  
      *     {@link CiManagement.Notifiers }
 115  
      *     
 116  
      */
 117  
     public CiManagement.Notifiers getNotifiers() {
 118  0
         return notifiers;
 119  
     }
 120  
 
 121  
     /**
 122  
      * Sets the value of the notifiers property.
 123  
      * 
 124  
      * @param value
 125  
      *     allowed object is
 126  
      *     {@link CiManagement.Notifiers }
 127  
      *     
 128  
      */
 129  
     public void setNotifiers(CiManagement.Notifiers value) {
 130  0
         this.notifiers = value;
 131  0
     }
 132  
 
 133  
 
 134  
     /**
 135  
      * <p>Java class for anonymous complex type.
 136  
      * 
 137  
      * <p>The following schema fragment specifies the expected content contained within this class.
 138  
      * 
 139  
      * <pre>
 140  
      * &lt;complexType>
 141  
      *   &lt;complexContent>
 142  
      *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 143  
      *       &lt;sequence>
 144  
      *         &lt;element name="notifier" type="{http://maven.apache.org/POM/4.0.0}Notifier" maxOccurs="unbounded" minOccurs="0"/>
 145  
      *       &lt;/sequence>
 146  
      *     &lt;/restriction>
 147  
      *   &lt;/complexContent>
 148  
      * &lt;/complexType>
 149  
      * </pre>
 150  
      * 
 151  
      * 
 152  
      */
 153  
     @XmlAccessorType(XmlAccessType.FIELD)
 154  
     @XmlType(name = "", propOrder = {
 155  
         "notifier"
 156  
     })
 157  0
     public static class Notifiers {
 158  
 
 159  
         protected List<Notifier> notifier;
 160  
 
 161  
         /**
 162  
          * Gets the value of the notifier property.
 163  
          * 
 164  
          * <p>
 165  
          * This accessor method returns a reference to the live list,
 166  
          * not a snapshot. Therefore any modification you make to the
 167  
          * returned list will be present inside the JAXB object.
 168  
          * This is why there is not a <CODE>set</CODE> method for the notifier property.
 169  
          * 
 170  
          * <p>
 171  
          * For example, to add a new item, do as follows:
 172  
          * <pre>
 173  
          *    getNotifier().add(newItem);
 174  
          * </pre>
 175  
          * 
 176  
          * 
 177  
          * <p>
 178  
          * Objects of the following type(s) are allowed in the list
 179  
          * {@link Notifier }
 180  
          * 
 181  
          * 
 182  
          */
 183  
         public List<Notifier> getNotifier() {
 184  0
             if (notifier == null) {
 185  0
                 notifier = new ArrayList<Notifier>();
 186  
             }
 187  0
             return this.notifier;
 188  
         }
 189  
 
 190  
     }
 191  
 
 192  
 }