1 // =================== DO NOT EDIT THIS FILE ====================
2 // Generated by Modello 2.1.2,
3 // any modifications will be overwritten.
4 // ==============================================================
5
6 package org.apache.maven.buildcache.xml.report;
7
8 /**
9 * Class ProjectReport.
10 *
11 * @version $Revision$ $Date$
12 */
13 @SuppressWarnings( "all" )
14 public class ProjectReport
15 implements java.io.Serializable
16 {
17
18 //--------------------------/
19 //- Class/Member Variables -/
20 //--------------------------/
21
22 /**
23 * Field groupId.
24 */
25 private String groupId;
26
27 /**
28 * Field artifactId.
29 */
30 private String artifactId;
31
32 /**
33 * Field checksum.
34 */
35 private String checksum;
36
37 /**
38 * Field checksumMatched.
39 */
40 private Boolean checksumMatched;
41
42 /**
43 * Field lifecycleMatched.
44 */
45 private Boolean lifecycleMatched;
46
47 /**
48 * Field pluginsMatched.
49 */
50 private Boolean pluginsMatched;
51
52 /**
53 * Field source.
54 */
55 private String source;
56
57 /**
58 * Field sharedToRemote.
59 */
60 private Boolean sharedToRemote;
61
62 /**
63 * Field url.
64 */
65 private String url;
66
67
68 //-----------/
69 //- Methods -/
70 //-----------/
71
72 /**
73 * Get the artifactId field.
74 *
75 * @return String
76 */
77 public String getArtifactId()
78 {
79 return this.artifactId;
80 } //-- String getArtifactId()
81
82 /**
83 * Get the checksum field.
84 *
85 * @return String
86 */
87 public String getChecksum()
88 {
89 return this.checksum;
90 } //-- String getChecksum()
91
92 /**
93 * Get the groupId field.
94 *
95 * @return String
96 */
97 public String getGroupId()
98 {
99 return this.groupId;
100 } //-- String getGroupId()
101
102 /**
103 * Get the source field.
104 *
105 * @return String
106 */
107 public String getSource()
108 {
109 return this.source;
110 } //-- String getSource()
111
112 /**
113 * Get the url field.
114 *
115 * @return String
116 */
117 public String getUrl()
118 {
119 return this.url;
120 } //-- String getUrl()
121
122 /**
123 * Get the checksumMatched field.
124 *
125 * @return Boolean
126 */
127 public Boolean isChecksumMatched()
128 {
129 return this.checksumMatched;
130 } //-- Boolean isChecksumMatched()
131
132 /**
133 * Get the lifecycleMatched field.
134 *
135 * @return Boolean
136 */
137 public Boolean isLifecycleMatched()
138 {
139 return this.lifecycleMatched;
140 } //-- Boolean isLifecycleMatched()
141
142 /**
143 * Get the pluginsMatched field.
144 *
145 * @return Boolean
146 */
147 public Boolean isPluginsMatched()
148 {
149 return this.pluginsMatched;
150 } //-- Boolean isPluginsMatched()
151
152 /**
153 * Get the sharedToRemote field.
154 *
155 * @return Boolean
156 */
157 public Boolean isSharedToRemote()
158 {
159 return this.sharedToRemote;
160 } //-- Boolean isSharedToRemote()
161
162 /**
163 * Set the artifactId field.
164 *
165 * @param artifactId a artifactId object.
166 */
167 public void setArtifactId( String artifactId )
168 {
169 this.artifactId = artifactId;
170 } //-- void setArtifactId( String )
171
172 /**
173 * Set the checksum field.
174 *
175 * @param checksum a checksum object.
176 */
177 public void setChecksum( String checksum )
178 {
179 this.checksum = checksum;
180 } //-- void setChecksum( String )
181
182 /**
183 * Set the checksumMatched field.
184 *
185 * @param checksumMatched a checksumMatched object.
186 */
187 public void setChecksumMatched( Boolean checksumMatched )
188 {
189 this.checksumMatched = checksumMatched;
190 } //-- void setChecksumMatched( Boolean )
191
192 /**
193 * Set the groupId field.
194 *
195 * @param groupId a groupId object.
196 */
197 public void setGroupId( String groupId )
198 {
199 this.groupId = groupId;
200 } //-- void setGroupId( String )
201
202 /**
203 * Set the lifecycleMatched field.
204 *
205 * @param lifecycleMatched a lifecycleMatched object.
206 */
207 public void setLifecycleMatched( Boolean lifecycleMatched )
208 {
209 this.lifecycleMatched = lifecycleMatched;
210 } //-- void setLifecycleMatched( Boolean )
211
212 /**
213 * Set the pluginsMatched field.
214 *
215 * @param pluginsMatched a pluginsMatched object.
216 */
217 public void setPluginsMatched( Boolean pluginsMatched )
218 {
219 this.pluginsMatched = pluginsMatched;
220 } //-- void setPluginsMatched( Boolean )
221
222 /**
223 * Set the sharedToRemote field.
224 *
225 * @param sharedToRemote a sharedToRemote object.
226 */
227 public void setSharedToRemote( Boolean sharedToRemote )
228 {
229 this.sharedToRemote = sharedToRemote;
230 } //-- void setSharedToRemote( Boolean )
231
232 /**
233 * Set the source field.
234 *
235 * @param source a source object.
236 */
237 public void setSource( String source )
238 {
239 this.source = source;
240 } //-- void setSource( String )
241
242 /**
243 * Set the url field.
244 *
245 * @param url a url object.
246 */
247 public void setUrl( String url )
248 {
249 this.url = url;
250 } //-- void setUrl( String )
251
252 }