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