All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jodd.servlet.upload.FileUploadFactory Maven / Gradle / Ivy

There is a newer version: 3.4.1
Show newest version
// Copyright (c) 2003-2010, Jodd Team (jodd.org). All Rights Reserved.

package jodd.servlet.upload;

/**
 * {@link FileUpload} factory for handling uploaded files. Implementations may
 * handle uploaded files differently: to store them to memory, directly to disk
 * or something else.
 * @see jodd.servlet.upload.impl
 */
public interface FileUploadFactory {

	/**
	 * Creates new instance of {@link FileUpload uploaded file}.
	 */
	FileUpload create(MultipartRequestInputStream input);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy