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

com.talk2object.plum.input.value.File Maven / Gradle / Ivy

The newest version!
package com.talk2object.plum.input.value;

import java.io.IOException;
import java.io.InputStream;

/**
 * abstract file object for input parameter value
 * 
 * @author jackding
 *
 */
public interface File {

	String getContentType();

	String getName();

	long getSize();

	InputStream getInputStream() throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy