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

com.genexus.fileupload.FileItemStream Maven / Gradle / Ivy

Go to download

Core classes for the runtime used by Java and Android apps generated with GeneXus

The newest version!
package com.genexus.fileupload;

import com.genexus.fileupload.IFileItemStream;
import java.io.IOException;
import java.io.InputStream;

public class FileItemStream implements IFileItemStream{
	private org.apache.commons.fileupload.FileItemStream fis;

	public FileItemStream(org.apache.commons.fileupload.FileItemStream fis) {
		this.fis = fis;
	}

	public String getName() {
		return fis.getName();
	}

	public boolean isFormField() {
		return fis.isFormField();
	}

	public InputStream openStream() throws IOException {
		return fis.openStream();
	}

	public String getFieldName() {
		return fis.getFieldName();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy