adding all of botlist, initial add
[botlist.git] / openbotlist / src / org / spirit / util / BotListFileUploadType.java
blob40ece6160f2f22f8357bd0288c7bfdad690f1e14
1 /**
2 * Berlin Brown
3 * Dec 25, 2006
4 */
5 package org.spirit.util;
7 import javax.servlet.http.HttpServletRequest;
9 /**
10 * This is class is used by botverse.
11 * @author Berlin Brown
14 public interface BotListFileUploadType {
16 /**
17 * @return the maxMemorySize
19 public int getMaxMemorySize();
21 /**
22 * @param maxMemorySize the maxMemorySize to set
24 public void setMaxMemorySize(int maxMemorySize);
26 /**
27 * @return the uploadDir
29 public String getUploadDir();
31 /**
32 * @param uploadDir the uploadDir to set
34 public void setUploadDir(String uploadDir);
36 /**
37 * @return the maxFileSize
39 public int getMaxFileSize();
41 /**
42 * @param maxFileSize the maxFileSize to set
44 public void setMaxFileSize(int maxFileSize);
46 /**
47 * @return the fileUploadEnabled
49 public boolean isFileUploadEnabled();
51 /**
52 * @param fileUploadEnabled the fileUploadEnabled to set
54 public void setFileUploadEnabled(boolean fileUploadEnabled);
56 public int uploadFiles(HttpServletRequest request) throws Exception;