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