1 15 package org.apache.tapestry.request; 16 17 import java.io.File ; 18 import java.io.InputStream ; 19 20 27 28 public interface IUploadFile 29 { 30 35 36 public String getFileName(); 37 38 47 48 public String getFilePath(); 49 50 60 61 public InputStream getStream(); 62 63 70 71 public String getContentType(); 72 73 81 82 public void write(File file); 83 84 88 89 public boolean isInMemory(); 90 91 96 97 public long getSize(); 98 } | Popular Tags |