1 16 package net.myvietnam.mvncore.web.fileupload; 17 18 import java.io.File ; 19 import net.myvietnam.mvncore.web.fileupload.disk.DiskFileItemFactory; 20 21 45 public class DefaultFileItemFactory extends DiskFileItemFactory { 46 47 49 50 56 public DefaultFileItemFactory() { 57 super(); 58 } 59 60 61 73 public DefaultFileItemFactory(int sizeThreshold, File repository) { 74 super(sizeThreshold, repository); 75 } 76 77 78 80 96 public FileItem createItem( 97 String fieldName, 98 String contentType, 99 boolean isFormField, 100 String fileName 101 ) { 102 return new DefaultFileItem(fieldName, contentType, 103 isFormField, fileName, getSizeThreshold(), getRepository()); 104 } 105 106 } 107 | Popular Tags |