Coverage Report - fr.paris.lutece.plugins.releaser.business.jaxb.maven.Parent
 
Classes in this File Line Coverage Branch Coverage Complexity
Parent
7 %
1/13
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  
  *  4.0.0
 19  
  * 
 20  
  * <p>Java class for Parent complex type.
 21  
  * 
 22  
  * <p>The following schema fragment specifies the expected content contained within this class.
 23  
  * 
 24  
  * <pre>
 25  
  * &lt;complexType name="Parent">
 26  
  *   &lt;complexContent>
 27  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 28  
  *       &lt;all>
 29  
  *         &lt;element name="artifactId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 30  
  *         &lt;element name="groupId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 31  
  *         &lt;element name="version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 32  
  *         &lt;element name="relativePath" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 33  
  *       &lt;/all>
 34  
  *     &lt;/restriction>
 35  
  *   &lt;/complexContent>
 36  
  * &lt;/complexType>
 37  
  * </pre>
 38  
  * 
 39  
  * 
 40  
  */
 41  
 @XmlAccessorType(XmlAccessType.FIELD)
 42  
 @XmlType(name = "Parent", propOrder = {
 43  
 
 44  
 })
 45  2
 public class Parent {
 46  
 
 47  
     protected String artifactId;
 48  
     protected String groupId;
 49  
     protected String version;
 50  
     @XmlElement(defaultValue = "../pom.xml")
 51  
     protected String relativePath;
 52  
 
 53  
     /**
 54  
      * Gets the value of the artifactId property.
 55  
      * 
 56  
      * @return
 57  
      *     possible object is
 58  
      *     {@link String }
 59  
      *     
 60  
      */
 61  
     public String getArtifactId() {
 62  0
         return artifactId;
 63  
     }
 64  
 
 65  
     /**
 66  
      * Sets the value of the artifactId property.
 67  
      * 
 68  
      * @param value
 69  
      *     allowed object is
 70  
      *     {@link String }
 71  
      *     
 72  
      */
 73  
     public void setArtifactId(String value) {
 74  0
         this.artifactId = value;
 75  0
     }
 76  
 
 77  
     /**
 78  
      * Gets the value of the groupId property.
 79  
      * 
 80  
      * @return
 81  
      *     possible object is
 82  
      *     {@link String }
 83  
      *     
 84  
      */
 85  
     public String getGroupId() {
 86  0
         return groupId;
 87  
     }
 88  
 
 89  
     /**
 90  
      * Sets the value of the groupId property.
 91  
      * 
 92  
      * @param value
 93  
      *     allowed object is
 94  
      *     {@link String }
 95  
      *     
 96  
      */
 97  
     public void setGroupId(String value) {
 98  0
         this.groupId = value;
 99  0
     }
 100  
 
 101  
     /**
 102  
      * Gets the value of the version property.
 103  
      * 
 104  
      * @return
 105  
      *     possible object is
 106  
      *     {@link String }
 107  
      *     
 108  
      */
 109  
     public String getVersion() {
 110  0
         return version;
 111  
     }
 112  
 
 113  
     /**
 114  
      * Sets the value of the version property.
 115  
      * 
 116  
      * @param value
 117  
      *     allowed object is
 118  
      *     {@link String }
 119  
      *     
 120  
      */
 121  
     public void setVersion(String value) {
 122  0
         this.version = value;
 123  0
     }
 124  
 
 125  
     /**
 126  
      * Gets the value of the relativePath property.
 127  
      * 
 128  
      * @return
 129  
      *     possible object is
 130  
      *     {@link String }
 131  
      *     
 132  
      */
 133  
     public String getRelativePath() {
 134  0
         return relativePath;
 135  
     }
 136  
 
 137  
     /**
 138  
      * Sets the value of the relativePath property.
 139  
      * 
 140  
      * @param value
 141  
      *     allowed object is
 142  
      *     {@link String }
 143  
      *     
 144  
      */
 145  
     public void setRelativePath(String value) {
 146  0
         this.relativePath = value;
 147  0
     }
 148  
 
 149  
 }