adding all of botlist, initial add
[botlist.git] / openbotlist / src / org / spirit / form / BotListDocFileMetadataForm.java
blob0f1c0f55bf5dd5069048f4acedb246e1e66e9d3d
1 /**
2 * Berlin Brown
3 * Nov 9, 2006
4 */
6 package org.spirit.form;
8 import org.spirit.form.base.BotListBaseForm;
10 /**
11 * This is class is used by botverse.
13 * @author Berlin Brown
17 public class BotListDocFileMetadataForm extends BotListBaseForm {
19 private Long docFilesize;
20 private String docOriginalname;
21 private Long documentId;
22 private String docFilename;
23 /**
24 * @return the docFilename
26 public String getDocFilename() {
27 return docFilename;
29 /**
30 * @param docFilename the docFilename to set
32 public void setDocFilename(String docFilename) {
33 this.docFilename = docFilename;
35 /**
36 * @return the docFilesize
38 public Long getDocFilesize() {
39 return docFilesize;
41 /**
42 * @param docFilesize the docFilesize to set
44 public void setDocFilesize(Long docFilesize) {
45 this.docFilesize = docFilesize;
47 /**
48 * @return the docOriginalname
50 public String getDocOriginalname() {
51 return docOriginalname;
53 /**
54 * @param docOriginalname the docOriginalname to set
56 public void setDocOriginalname(String docOriginalname) {
57 this.docOriginalname = docOriginalname;
59 /**
60 * @return the documentId
62 public Long getDocumentId() {
63 return documentId;
65 /**
66 * @param documentId the documentId to set
68 public void setDocumentId(Long documentId) {
69 this.documentId = documentId;