1 61 62 63 package org.apache.commons.fileupload; 64 65 66 89 public class PortletFileUpload 90 extends PortletFileUploadBase 91 { 92 93 95 96 99 private FileItemFactory fileItemFactory; 100 101 102 104 105 111 public PortletFileUpload() 112 { 113 super(); 114 } 115 116 117 123 public PortletFileUpload(FileItemFactory fileItemFactory) 124 { 125 super(); 126 this.fileItemFactory = fileItemFactory; 127 } 128 129 130 132 133 138 public FileItemFactory getFileItemFactory() 139 { 140 return fileItemFactory; 141 } 142 143 144 149 public void setFileItemFactory(FileItemFactory factory) 150 { 151 this.fileItemFactory = factory; 152 } 153 154 155 } 156 | Popular Tags |