package net.sourceforge.fenixedu.dataTransferObject; import java.io.InputStream; import java.io.Serializable; public class FileUploadBean implements Serializable { private transient InputStream inputStream; private String filename; private String contentType; public InputStream getInputStream() { return inputStream; } public void setInputStream(InputStream inputStream) { this.inputStream = inputStream; } public String getFilename() { return filename; } public void setFilename(String filename) { this.filename = filename; } public String getContentType() { return contentType; } public void setContentType(String contentType) { this.contentType = contentType; } }