001: /*
002: * Copyright (c) JForum Team
003: * All rights reserved.
004: *
005: * Redistribution and use in source and binary forms,
006: * with or without modification, are permitted provided
007: * that the following conditions are met:
008: *
009: * 1) Redistributions of source code must retain the above
010: * copyright notice, this list of conditions and the
011: * following disclaimer.
012: * 2) Redistributions in binary form must reproduce the
013: * above copyright notice, this list of conditions and
014: * the following disclaimer in the documentation and/or
015: * other materials provided with the distribution.
016: * 3) Neither the name of "Rafael Steil" nor
017: * the names of its contributors may be used to endorse
018: * or promote products derived from this software without
019: * specific prior written permission.
020: *
021: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
022: * HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
023: * EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
024: * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
025: * MERCHANTABILITY AND FITNESS FOR A PARTICULAR
026: * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
027: * THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
028: * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
029: * EXEMPLARY, OR CONSEQUENTIAL DAMAGES
030: * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
031: * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
032: * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
033: * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
034: * IN CONTRACT, STRICT LIABILITY, OR TORT
035: * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
036: * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
037: * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
038: *
039: * Created on Jan 18, 2005 2:59:54 PM
040: * The JForum Project
041: * http://www.jforum.net
042: */
043: package net.jforum.entities;
044:
045: import java.util.Date;
046:
047: /**
048: * @author Rafael Steil
049: * @version $Id: AttachmentInfo.java,v 1.6 2006/08/20 22:47:36 rafaelsteil Exp $
050: */
051: public class AttachmentInfo {
052: private int id;
053: private int attachId;
054: private int downloadCount;
055:
056: private String physicalFilename;
057: private String realFilename;
058: private String comment;
059: private String mimetype;
060:
061: private long uploadTimeInMillis;
062: private long filesize;
063:
064: private boolean hasThumb;
065:
066: private Date uploadTime;
067: private AttachmentExtension extension;
068:
069: /**
070: * @return Returns the attachId.
071: */
072: public int getAttachId() {
073: return this .attachId;
074: }
075:
076: /**
077: * @param attachId The attachId to set.
078: */
079: public void setAttachId(int attachId) {
080: this .attachId = attachId;
081: }
082:
083: /**
084: * @return Returns the comment.
085: */
086: public String getComment() {
087: return this .comment;
088: }
089:
090: /**
091: * @param comment The comment to set.
092: */
093: public void setComment(String comment) {
094: this .comment = comment;
095: }
096:
097: /**
098: * @return Returns the downloadCount.
099: */
100: public int getDownloadCount() {
101: return this .downloadCount;
102: }
103:
104: /**
105: * @param downloadCount The downloadCount to set.
106: */
107: public void setDownloadCount(int downloadCount) {
108: this .downloadCount = downloadCount;
109: }
110:
111: /**
112: * @return Returns the extension.
113: */
114: public AttachmentExtension getExtension() {
115: return this .extension;
116: }
117:
118: /**
119: * @param extension The extension to set.
120: */
121: public void setExtension(AttachmentExtension extension) {
122: this .extension = extension;
123: }
124:
125: /**
126: * @return Returns the filesize.
127: */
128: public long getFilesize() {
129: return this .filesize;
130: }
131:
132: /**
133: * @param filesize The filesize to set.
134: */
135: public void setFilesize(long filesize) {
136: this .filesize = filesize;
137: }
138:
139: /**
140: * @return Returns the hasThumb.
141: */
142: public boolean isHasThumb() {
143: return this .hasThumb;
144: }
145:
146: /**
147: * @param hasThumb The hasThumb to set.
148: */
149: public void setHasThumb(boolean hasThumb) {
150: this .hasThumb = hasThumb;
151: }
152:
153: /**
154: * @return Returns the id.
155: */
156: public int getId() {
157: return this .id;
158: }
159:
160: /**
161: * @param id The id to set.
162: */
163: public void setId(int id) {
164: this .id = id;
165: }
166:
167: /**
168: * @return Returns the mimetype.
169: */
170: public String getMimetype() {
171: return this .mimetype;
172: }
173:
174: /**
175: * @param mimetype The mimetype to set.
176: */
177: public void setMimetype(String mimetype) {
178: this .mimetype = mimetype;
179: }
180:
181: /**
182: * @return Returns the physicalFilename.
183: */
184: public String getPhysicalFilename() {
185: return this .physicalFilename;
186: }
187:
188: /**
189: * @param physicalFilename The physicalFilename to set.
190: */
191: public void setPhysicalFilename(String physicalFilename) {
192: this .physicalFilename = physicalFilename;
193: }
194:
195: /**
196: * @return Returns the realFilename.
197: */
198: public String getRealFilename() {
199: return this .realFilename;
200: }
201:
202: /**
203: * @param realFilename The realFilename to set.
204: */
205: public void setRealFilename(String realFilename) {
206: this .realFilename = realFilename;
207: }
208:
209: /**
210: * @return Returns the uploadTime.
211: */
212: public Date getUploadTime() {
213: return this .uploadTime;
214: }
215:
216: /**
217: * @param uploadTime The uploadTime to set.
218: */
219: public void setUploadTime(Date uploadTime) {
220: this .uploadTime = uploadTime;
221: }
222:
223: /**
224: * @return Returns the uploadTimeInMillis.
225: */
226: public long getUploadTimeInMillis() {
227: return this .uploadTimeInMillis;
228: }
229:
230: /**
231: * @param uploadTimeInMillis The uploadTimeInMillis to set.
232: */
233: public void setUploadTimeInMillis(long uploadTimeInMillis) {
234: this.uploadTimeInMillis = uploadTimeInMillis;
235: }
236: }
|