1 /*
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18 =================== DO NOT EDIT THIS FILE ====================
19 Generated by Modello 2.5.1,
20 any modifications will be overwritten.
21 ==============================================================
22 */
23
24 package org.apache.maven.buildcache.xml.report;
25
26 /**
27 * Class ProjectReport.
28 *
29 * @version $Revision$ $Date$
30 */
31 @SuppressWarnings( "all" )
32 public class ProjectReport
33 implements java.io.Serializable
34 {
35
36 //--------------------------/
37 //- Class/Member Variables -/
38 //--------------------------/
39
40 /**
41 * Field groupId.
42 */
43 private String groupId;
44
45 /**
46 * Field artifactId.
47 */
48 private String artifactId;
49
50 /**
51 * Field checksum.
52 */
53 private String checksum;
54
55 /**
56 * Field checksumMatched.
57 */
58 private Boolean checksumMatched;
59
60 /**
61 * Field lifecycleMatched.
62 */
63 private Boolean lifecycleMatched;
64
65 /**
66 * Field pluginsMatched.
67 */
68 private Boolean pluginsMatched;
69
70 /**
71 * Field source.
72 */
73 private String source;
74
75 /**
76 * Field sharedToRemote.
77 */
78 private Boolean sharedToRemote;
79
80 /**
81 * Field url.
82 */
83 private String url;
84
85
86 //-----------/
87 //- Methods -/
88 //-----------/
89
90 /**
91 * Get the artifactId field.
92 *
93 * @return String
94 */
95 public String getArtifactId()
96 {
97 return this.artifactId;
98 } //-- String getArtifactId()
99
100 /**
101 * Get the checksum field.
102 *
103 * @return String
104 */
105 public String getChecksum()
106 {
107 return this.checksum;
108 } //-- String getChecksum()
109
110 /**
111 * Get the groupId field.
112 *
113 * @return String
114 */
115 public String getGroupId()
116 {
117 return this.groupId;
118 } //-- String getGroupId()
119
120 /**
121 * Get the source field.
122 *
123 * @return String
124 */
125 public String getSource()
126 {
127 return this.source;
128 } //-- String getSource()
129
130 /**
131 * Get the url field.
132 *
133 * @return String
134 */
135 public String getUrl()
136 {
137 return this.url;
138 } //-- String getUrl()
139
140 /**
141 * Get the checksumMatched field.
142 *
143 * @return Boolean
144 */
145 public Boolean isChecksumMatched()
146 {
147 return this.checksumMatched;
148 } //-- Boolean isChecksumMatched()
149
150 /**
151 * Get the lifecycleMatched field.
152 *
153 * @return Boolean
154 */
155 public Boolean isLifecycleMatched()
156 {
157 return this.lifecycleMatched;
158 } //-- Boolean isLifecycleMatched()
159
160 /**
161 * Get the pluginsMatched field.
162 *
163 * @return Boolean
164 */
165 public Boolean isPluginsMatched()
166 {
167 return this.pluginsMatched;
168 } //-- Boolean isPluginsMatched()
169
170 /**
171 * Get the sharedToRemote field.
172 *
173 * @return Boolean
174 */
175 public Boolean isSharedToRemote()
176 {
177 return this.sharedToRemote;
178 } //-- Boolean isSharedToRemote()
179
180 /**
181 * Set the artifactId field.
182 *
183 * @param artifactId a artifactId object.
184 */
185 public void setArtifactId( String artifactId )
186 {
187 this.artifactId = artifactId;
188 } //-- void setArtifactId( String )
189
190 /**
191 * Set the checksum field.
192 *
193 * @param checksum a checksum object.
194 */
195 public void setChecksum( String checksum )
196 {
197 this.checksum = checksum;
198 } //-- void setChecksum( String )
199
200 /**
201 * Set the checksumMatched field.
202 *
203 * @param checksumMatched a checksumMatched object.
204 */
205 public void setChecksumMatched( Boolean checksumMatched )
206 {
207 this.checksumMatched = checksumMatched;
208 } //-- void setChecksumMatched( Boolean )
209
210 /**
211 * Set the groupId field.
212 *
213 * @param groupId a groupId object.
214 */
215 public void setGroupId( String groupId )
216 {
217 this.groupId = groupId;
218 } //-- void setGroupId( String )
219
220 /**
221 * Set the lifecycleMatched field.
222 *
223 * @param lifecycleMatched a lifecycleMatched object.
224 */
225 public void setLifecycleMatched( Boolean lifecycleMatched )
226 {
227 this.lifecycleMatched = lifecycleMatched;
228 } //-- void setLifecycleMatched( Boolean )
229
230 /**
231 * Set the pluginsMatched field.
232 *
233 * @param pluginsMatched a pluginsMatched object.
234 */
235 public void setPluginsMatched( Boolean pluginsMatched )
236 {
237 this.pluginsMatched = pluginsMatched;
238 } //-- void setPluginsMatched( Boolean )
239
240 /**
241 * Set the sharedToRemote field.
242 *
243 * @param sharedToRemote a sharedToRemote object.
244 */
245 public void setSharedToRemote( Boolean sharedToRemote )
246 {
247 this.sharedToRemote = sharedToRemote;
248 } //-- void setSharedToRemote( Boolean )
249
250 /**
251 * Set the source field.
252 *
253 * @param source a source object.
254 */
255 public void setSource( String source )
256 {
257 this.source = source;
258 } //-- void setSource( String )
259
260 /**
261 * Set the url field.
262 *
263 * @param url a url object.
264 */
265 public void setUrl( String url )
266 {
267 this.url = url;
268 } //-- void setUrl( String )
269
270 }