com.genexus.fileupload.FileItemStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxwrapperjavax Show documentation
Show all versions of gxwrapperjavax Show documentation
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