com.genexus.fileupload.FileItemIterator 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 java.io.IOException;
public class FileItemIterator implements IFileItemIterator{
private org.apache.commons.fileupload.FileItemIterator fii;
public FileItemIterator(org.apache.commons.fileupload.FileItemIterator fii) {
this.fii = fii;
}
public boolean hasNext() throws org.apache.commons.fileupload.FileUploadException, IOException {
return fii.hasNext();
}
public IFileItemStream next() throws org.apache.commons.fileupload.FileUploadException, IOException{
return new FileItemStream(fii.next());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy