package net.sourceforge.fenixedu.presentationTier.Action.webSiteManager; import java.io.InputStream; import java.io.Serializable; public class SimpleFileBean implements Serializable { /** * Serial version id. */ private static final long serialVersionUID = 1L; private transient InputStream file; private String name; private long size; private String contentType; public InputStream getFile() { return this.file; } public void setFile(InputStream file) { this.file = file; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public long getSize() { return this.size; } public void setSize(long size) { this.size = size; } public String getContentType() { return this.contentType; } public void setContentType(String contentType) { this.contentType = contentType; } }