Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Extension |
|
| 1.0;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.XmlType; | |
14 | ||
15 | ||
16 | /** | |
17 | * Describes a build extension to utilise. | |
18 | * | |
19 | * <p>Java class for Extension complex type. | |
20 | * | |
21 | * <p>The following schema fragment specifies the expected content contained within this class. | |
22 | * | |
23 | * <pre> | |
24 | * <complexType name="Extension"> | |
25 | * <complexContent> | |
26 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
27 | * <all> | |
28 | * <element name="groupId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
29 | * <element name="artifactId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
30 | * <element name="version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
31 | * </all> | |
32 | * </restriction> | |
33 | * </complexContent> | |
34 | * </complexType> | |
35 | * </pre> | |
36 | * | |
37 | * | |
38 | */ | |
39 | @XmlAccessorType(XmlAccessType.FIELD) | |
40 | @XmlType(name = "Extension", propOrder = { | |
41 | ||
42 | }) | |
43 | 1 | public class Extension { |
44 | ||
45 | protected String groupId; | |
46 | protected String artifactId; | |
47 | protected String version; | |
48 | ||
49 | /** | |
50 | * Gets the value of the groupId property. | |
51 | * | |
52 | * @return | |
53 | * possible object is | |
54 | * {@link String } | |
55 | * | |
56 | */ | |
57 | public String getGroupId() { | |
58 | 0 | return groupId; |
59 | } | |
60 | ||
61 | /** | |
62 | * Sets the value of the groupId property. | |
63 | * | |
64 | * @param value | |
65 | * allowed object is | |
66 | * {@link String } | |
67 | * | |
68 | */ | |
69 | public void setGroupId(String value) { | |
70 | 0 | this.groupId = value; |
71 | 0 | } |
72 | ||
73 | /** | |
74 | * Gets the value of the artifactId property. | |
75 | * | |
76 | * @return | |
77 | * possible object is | |
78 | * {@link String } | |
79 | * | |
80 | */ | |
81 | public String getArtifactId() { | |
82 | 0 | return artifactId; |
83 | } | |
84 | ||
85 | /** | |
86 | * Sets the value of the artifactId property. | |
87 | * | |
88 | * @param value | |
89 | * allowed object is | |
90 | * {@link String } | |
91 | * | |
92 | */ | |
93 | public void setArtifactId(String value) { | |
94 | 0 | this.artifactId = value; |
95 | 0 | } |
96 | ||
97 | /** | |
98 | * Gets the value of the version property. | |
99 | * | |
100 | * @return | |
101 | * possible object is | |
102 | * {@link String } | |
103 | * | |
104 | */ | |
105 | public String getVersion() { | |
106 | 0 | return version; |
107 | } | |
108 | ||
109 | /** | |
110 | * Sets the value of the version property. | |
111 | * | |
112 | * @param value | |
113 | * allowed object is | |
114 | * {@link String } | |
115 | * | |
116 | */ | |
117 | public void setVersion(String value) { | |
118 | 0 | this.version = value; |
119 | 0 | } |
120 | ||
121 | } |