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.build;
25
26 /**
27 * Class DigestItem.
28 *
29 * @version $Revision$ $Date$
30 */
31 @SuppressWarnings( "all" )
32 public class DigestItem
33 implements java.io.Serializable
34 {
35
36 //--------------------------/
37 //- Class/Member Variables -/
38 //--------------------------/
39
40 /**
41 * Field value.
42 */
43 private String value;
44
45 /**
46 * Field type.
47 */
48 private String type;
49
50 /**
51 * Field hash.
52 */
53 private String hash;
54
55 /**
56 * Field fileChecksum.
57 */
58 private String fileChecksum;
59
60 /**
61 * Field content.
62 */
63 private String content;
64
65 /**
66 * Field isText.
67 */
68 private String isText;
69
70 /**
71 * Field charset.
72 */
73 private String charset;
74
75 /**
76 * Field eol.
77 */
78 private String eol;
79
80
81 //-----------/
82 //- Methods -/
83 //-----------/
84
85 /**
86 * Get the charset field.
87 *
88 * @return String
89 */
90 public String getCharset()
91 {
92 return this.charset;
93 } //-- String getCharset()
94
95 /**
96 * Get the content field.
97 *
98 * @return String
99 */
100 public String getContent()
101 {
102 return this.content;
103 } //-- String getContent()
104
105 /**
106 * Get the eol field.
107 *
108 * @return String
109 */
110 public String getEol()
111 {
112 return this.eol;
113 } //-- String getEol()
114
115 /**
116 * Get the fileChecksum field.
117 *
118 * @return String
119 */
120 public String getFileChecksum()
121 {
122 return this.fileChecksum;
123 } //-- String getFileChecksum()
124
125 /**
126 * Get the hash field.
127 *
128 * @return String
129 */
130 public String getHash()
131 {
132 return this.hash;
133 } //-- String getHash()
134
135 /**
136 * Get the isText field.
137 *
138 * @return String
139 */
140 public String getIsText()
141 {
142 return this.isText;
143 } //-- String getIsText()
144
145 /**
146 * Get the type field.
147 *
148 * @return String
149 */
150 public String getType()
151 {
152 return this.type;
153 } //-- String getType()
154
155 /**
156 * Get the value field.
157 *
158 * @return String
159 */
160 public String getValue()
161 {
162 return this.value;
163 } //-- String getValue()
164
165 /**
166 * Set the charset field.
167 *
168 * @param charset a charset object.
169 */
170 public void setCharset( String charset )
171 {
172 this.charset = charset;
173 } //-- void setCharset( String )
174
175 /**
176 * Set the content field.
177 *
178 * @param content a content object.
179 */
180 public void setContent( String content )
181 {
182 this.content = content;
183 } //-- void setContent( String )
184
185 /**
186 * Set the eol field.
187 *
188 * @param eol a eol object.
189 */
190 public void setEol( String eol )
191 {
192 this.eol = eol;
193 } //-- void setEol( String )
194
195 /**
196 * Set the fileChecksum field.
197 *
198 * @param fileChecksum a fileChecksum object.
199 */
200 public void setFileChecksum( String fileChecksum )
201 {
202 this.fileChecksum = fileChecksum;
203 } //-- void setFileChecksum( String )
204
205 /**
206 * Set the hash field.
207 *
208 * @param hash a hash object.
209 */
210 public void setHash( String hash )
211 {
212 this.hash = hash;
213 } //-- void setHash( String )
214
215 /**
216 * Set the isText field.
217 *
218 * @param isText a isText object.
219 */
220 public void setIsText( String isText )
221 {
222 this.isText = isText;
223 } //-- void setIsText( String )
224
225 /**
226 * Set the type field.
227 *
228 * @param type a type object.
229 */
230 public void setType( String type )
231 {
232 this.type = type;
233 } //-- void setType( String )
234
235 /**
236 * Set the value field.
237 *
238 * @param value a value object.
239 */
240 public void setValue( String value )
241 {
242 this.value = value;
243 } //-- void setValue( String )
244
245 }