Coverage Report - fr.paris.lutece.plugins.releaser.business.jaxb.maven.ReportPlugin
 
Classes in this File Line Coverage Branch Coverage Complexity
ReportPlugin
0 %
0/19
N/A
1,143
ReportPlugin$Configuration
0 %
0/4
0 %
0/2
1,143
ReportPlugin$ReportSets
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.XmlAnyElement;
 16  
 import javax.xml.bind.annotation.XmlElement;
 17  
 import javax.xml.bind.annotation.XmlType;
 18  
 import org.w3c.dom.Element;
 19  
 
 20  
 
 21  
 /**
 22  
  *  4.0.0
 23  
  * 
 24  
  * <p>Java class for ReportPlugin complex type.
 25  
  * 
 26  
  * <p>The following schema fragment specifies the expected content contained within this class.
 27  
  * 
 28  
  * <pre>
 29  
  * &lt;complexType name="ReportPlugin">
 30  
  *   &lt;complexContent>
 31  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 32  
  *       &lt;all>
 33  
  *         &lt;element name="groupId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 34  
  *         &lt;element name="artifactId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 35  
  *         &lt;element name="version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 36  
  *         &lt;element name="inherited" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 37  
  *         &lt;element name="configuration" minOccurs="0">
 38  
  *           &lt;complexType>
 39  
  *             &lt;complexContent>
 40  
  *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 41  
  *                 &lt;sequence>
 42  
  *                   &lt;any processContents='skip' maxOccurs="unbounded" minOccurs="0"/>
 43  
  *                 &lt;/sequence>
 44  
  *               &lt;/restriction>
 45  
  *             &lt;/complexContent>
 46  
  *           &lt;/complexType>
 47  
  *         &lt;/element>
 48  
  *         &lt;element name="reportSets" minOccurs="0">
 49  
  *           &lt;complexType>
 50  
  *             &lt;complexContent>
 51  
  *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 52  
  *                 &lt;sequence>
 53  
  *                   &lt;element name="reportSet" type="{http://maven.apache.org/POM/4.0.0}ReportSet" maxOccurs="unbounded" minOccurs="0"/>
 54  
  *                 &lt;/sequence>
 55  
  *               &lt;/restriction>
 56  
  *             &lt;/complexContent>
 57  
  *           &lt;/complexType>
 58  
  *         &lt;/element>
 59  
  *       &lt;/all>
 60  
  *     &lt;/restriction>
 61  
  *   &lt;/complexContent>
 62  
  * &lt;/complexType>
 63  
  * </pre>
 64  
  * 
 65  
  * 
 66  
  */
 67  
 @XmlAccessorType(XmlAccessType.FIELD)
 68  
 @XmlType(name = "ReportPlugin", propOrder = {
 69  
 
 70  
 })
 71  0
 public class ReportPlugin {
 72  
 
 73  
     @XmlElement(defaultValue = "org.apache.maven.plugins")
 74  
     protected String groupId;
 75  
     protected String artifactId;
 76  
     protected String version;
 77  
     protected String inherited;
 78  
     protected ReportPlugin.Configuration configuration;
 79  
     protected ReportPlugin.ReportSets reportSets;
 80  
 
 81  
     /**
 82  
      * Gets the value of the groupId property.
 83  
      * 
 84  
      * @return
 85  
      *     possible object is
 86  
      *     {@link String }
 87  
      *     
 88  
      */
 89  
     public String getGroupId() {
 90  0
         return groupId;
 91  
     }
 92  
 
 93  
     /**
 94  
      * Sets the value of the groupId property.
 95  
      * 
 96  
      * @param value
 97  
      *     allowed object is
 98  
      *     {@link String }
 99  
      *     
 100  
      */
 101  
     public void setGroupId(String value) {
 102  0
         this.groupId = value;
 103  0
     }
 104  
 
 105  
     /**
 106  
      * Gets the value of the artifactId property.
 107  
      * 
 108  
      * @return
 109  
      *     possible object is
 110  
      *     {@link String }
 111  
      *     
 112  
      */
 113  
     public String getArtifactId() {
 114  0
         return artifactId;
 115  
     }
 116  
 
 117  
     /**
 118  
      * Sets the value of the artifactId property.
 119  
      * 
 120  
      * @param value
 121  
      *     allowed object is
 122  
      *     {@link String }
 123  
      *     
 124  
      */
 125  
     public void setArtifactId(String value) {
 126  0
         this.artifactId = value;
 127  0
     }
 128  
 
 129  
     /**
 130  
      * Gets the value of the version property.
 131  
      * 
 132  
      * @return
 133  
      *     possible object is
 134  
      *     {@link String }
 135  
      *     
 136  
      */
 137  
     public String getVersion() {
 138  0
         return version;
 139  
     }
 140  
 
 141  
     /**
 142  
      * Sets the value of the version property.
 143  
      * 
 144  
      * @param value
 145  
      *     allowed object is
 146  
      *     {@link String }
 147  
      *     
 148  
      */
 149  
     public void setVersion(String value) {
 150  0
         this.version = value;
 151  0
     }
 152  
 
 153  
     /**
 154  
      * Gets the value of the inherited property.
 155  
      * 
 156  
      * @return
 157  
      *     possible object is
 158  
      *     {@link String }
 159  
      *     
 160  
      */
 161  
     public String getInherited() {
 162  0
         return inherited;
 163  
     }
 164  
 
 165  
     /**
 166  
      * Sets the value of the inherited property.
 167  
      * 
 168  
      * @param value
 169  
      *     allowed object is
 170  
      *     {@link String }
 171  
      *     
 172  
      */
 173  
     public void setInherited(String value) {
 174  0
         this.inherited = value;
 175  0
     }
 176  
 
 177  
     /**
 178  
      * Gets the value of the configuration property.
 179  
      * 
 180  
      * @return
 181  
      *     possible object is
 182  
      *     {@link ReportPlugin.Configuration }
 183  
      *     
 184  
      */
 185  
     public ReportPlugin.Configuration getConfiguration() {
 186  0
         return configuration;
 187  
     }
 188  
 
 189  
     /**
 190  
      * Sets the value of the configuration property.
 191  
      * 
 192  
      * @param value
 193  
      *     allowed object is
 194  
      *     {@link ReportPlugin.Configuration }
 195  
      *     
 196  
      */
 197  
     public void setConfiguration(ReportPlugin.Configuration value) {
 198  0
         this.configuration = value;
 199  0
     }
 200  
 
 201  
     /**
 202  
      * Gets the value of the reportSets property.
 203  
      * 
 204  
      * @return
 205  
      *     possible object is
 206  
      *     {@link ReportPlugin.ReportSets }
 207  
      *     
 208  
      */
 209  
     public ReportPlugin.ReportSets getReportSets() {
 210  0
         return reportSets;
 211  
     }
 212  
 
 213  
     /**
 214  
      * Sets the value of the reportSets property.
 215  
      * 
 216  
      * @param value
 217  
      *     allowed object is
 218  
      *     {@link ReportPlugin.ReportSets }
 219  
      *     
 220  
      */
 221  
     public void setReportSets(ReportPlugin.ReportSets value) {
 222  0
         this.reportSets = value;
 223  0
     }
 224  
 
 225  
 
 226  
     /**
 227  
      * <p>Java class for anonymous complex type.
 228  
      * 
 229  
      * <p>The following schema fragment specifies the expected content contained within this class.
 230  
      * 
 231  
      * <pre>
 232  
      * &lt;complexType>
 233  
      *   &lt;complexContent>
 234  
      *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 235  
      *       &lt;sequence>
 236  
      *         &lt;any processContents='skip' maxOccurs="unbounded" minOccurs="0"/>
 237  
      *       &lt;/sequence>
 238  
      *     &lt;/restriction>
 239  
      *   &lt;/complexContent>
 240  
      * &lt;/complexType>
 241  
      * </pre>
 242  
      * 
 243  
      * 
 244  
      */
 245  
     @XmlAccessorType(XmlAccessType.FIELD)
 246  
     @XmlType(name = "", propOrder = {
 247  
         "any"
 248  
     })
 249  0
     public static class Configuration {
 250  
 
 251  
         @XmlAnyElement
 252  
         protected List<Element> any;
 253  
 
 254  
         /**
 255  
          * Gets the value of the any property.
 256  
          * 
 257  
          * <p>
 258  
          * This accessor method returns a reference to the live list,
 259  
          * not a snapshot. Therefore any modification you make to the
 260  
          * returned list will be present inside the JAXB object.
 261  
          * This is why there is not a <CODE>set</CODE> method for the any property.
 262  
          * 
 263  
          * <p>
 264  
          * For example, to add a new item, do as follows:
 265  
          * <pre>
 266  
          *    getAny().add(newItem);
 267  
          * </pre>
 268  
          * 
 269  
          * 
 270  
          * <p>
 271  
          * Objects of the following type(s) are allowed in the list
 272  
          * {@link Element }
 273  
          * 
 274  
          * 
 275  
          */
 276  
         public List<Element> getAny() {
 277  0
             if (any == null) {
 278  0
                 any = new ArrayList<Element>();
 279  
             }
 280  0
             return this.any;
 281  
         }
 282  
 
 283  
     }
 284  
 
 285  
 
 286  
     /**
 287  
      * <p>Java class for anonymous complex type.
 288  
      * 
 289  
      * <p>The following schema fragment specifies the expected content contained within this class.
 290  
      * 
 291  
      * <pre>
 292  
      * &lt;complexType>
 293  
      *   &lt;complexContent>
 294  
      *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 295  
      *       &lt;sequence>
 296  
      *         &lt;element name="reportSet" type="{http://maven.apache.org/POM/4.0.0}ReportSet" maxOccurs="unbounded" minOccurs="0"/>
 297  
      *       &lt;/sequence>
 298  
      *     &lt;/restriction>
 299  
      *   &lt;/complexContent>
 300  
      * &lt;/complexType>
 301  
      * </pre>
 302  
      * 
 303  
      * 
 304  
      */
 305  
     @XmlAccessorType(XmlAccessType.FIELD)
 306  
     @XmlType(name = "", propOrder = {
 307  
         "reportSet"
 308  
     })
 309  0
     public static class ReportSets {
 310  
 
 311  
         protected List<ReportSet> reportSet;
 312  
 
 313  
         /**
 314  
          * Gets the value of the reportSet property.
 315  
          * 
 316  
          * <p>
 317  
          * This accessor method returns a reference to the live list,
 318  
          * not a snapshot. Therefore any modification you make to the
 319  
          * returned list will be present inside the JAXB object.
 320  
          * This is why there is not a <CODE>set</CODE> method for the reportSet property.
 321  
          * 
 322  
          * <p>
 323  
          * For example, to add a new item, do as follows:
 324  
          * <pre>
 325  
          *    getReportSet().add(newItem);
 326  
          * </pre>
 327  
          * 
 328  
          * 
 329  
          * <p>
 330  
          * Objects of the following type(s) are allowed in the list
 331  
          * {@link ReportSet }
 332  
          * 
 333  
          * 
 334  
          */
 335  
         public List<ReportSet> getReportSet() {
 336  0
             if (reportSet == null) {
 337  0
                 reportSet = new ArrayList<ReportSet>();
 338  
             }
 339  0
             return this.reportSet;
 340  
         }
 341  
 
 342  
     }
 343  
 
 344  
 }