1 17 18 19 package org.apache.tomcat.util.http.fileupload; 20 21 22 45 public class FileUpload 46 extends FileUploadBase 47 { 48 49 51 52 55 private FileItemFactory fileItemFactory; 56 57 58 60 61 67 public FileUpload() 68 { 69 super(); 70 } 71 72 73 79 public FileUpload(FileItemFactory fileItemFactory) 80 { 81 super(); 82 this.fileItemFactory = fileItemFactory; 83 } 84 85 86 88 89 94 public FileItemFactory getFileItemFactory() 95 { 96 return fileItemFactory; 97 } 98 99 100 105 public void setFileItemFactory(FileItemFactory factory) 106 { 107 this.fileItemFactory = factory; 108 } 109 110 111 } 112 | Popular Tags |