Example usage for org.apache.commons.fileupload FileItemFactory interface-usage

List of usage examples for org.apache.commons.fileupload FileItemFactory interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.fileupload FileItemFactory interface-usage.

Usage

From source file com.kuprowski.mogile.multipart.MojiFileItemFactory.java

/**
 * ********************************************************
 * Copyright: 2012 Tomek Kuprowski
 *
 * License: GPLv2: http://www.gnu.org/licences/gpl.html
 *

From source file com.gae.MemoryFileItemFactory.java

public class MemoryFileItemFactory implements FileItemFactory {
    public MemoryFileItemFactory() {
    }

    public FileItem createItem(String fieldName, String contentType, boolean isFormField, String fileName) {
        MemoryFileItem result = new MemoryFileItem(fieldName, contentType, isFormField, fileName);

From source file org.carrot2.dcs.MemoryFileItemFactory.java

/**
 * A file item factory storing contents of uploaded files in-memory.
 */
final class MemoryFileItemFactory implements FileItemFactory {
    /**
     * 

From source file org.everrest.core.impl.provider.ext.InMemoryItemFactory.java

/**
 * @author <a href="mailto:andrew00x@gmail.com">Andrey Parfonov</a>
 * @version $Id$
 */
class InMemoryItemFactory implements FileItemFactory {
    private final int maxSize;

From source file com.asual.summer.core.spring.StreamFileItemFactory.java

/**
 * 
 * @author Rostislav Hristov
 *
 */
public class StreamFileItemFactory implements FileItemFactory {

From source file org.tinygroup.weblayer.webcontext.parser.fileupload.TinyFileItemFactory.java

/**
 * 
 * : tiny
    
 * ?: renhui <br>
 * ?: 2014-1-3 <br>

From source file com.aspectran.web.support.multipart.inmemory.MemoryFileItemFactory.java

/**
 * The class is an implementation of the {@link org.apache.commons.fileupload.FileItemFactory} interface.
 */
public class MemoryFileItemFactory implements FileItemFactory {

    /** Threshold file size in Memory is set to max file upload size (default is max integer value). */

From source file com.zotoh.netio.ULFileFactory.java

/**
 * @author kenl
 *
 */
public class ULFileFactory implements FileItemFactory {

From source file de.micromata.genome.gwiki.page.impl.actionbean.GWikiFileSystemFileItemFactory.java

/**
 * Adapter to a file item.
 * 
 * @author roger
 * 
 */

From source file org.apache.click.extras.gae.MemoryFileItemFactory.java

/**
 * Provides a FileItemFactory implementation that creates {@link MemoryFileItem}
 * instances which always keep their content in memory.
 */
public class MemoryFileItemFactory implements FileItemFactory {