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