View Javadoc
1   package org.eclipse.rap.fileupload;
2   
3   public interface FileDetails {
4   	String getContentType();
5   
6   	long getContentLength();
7   
8   	String getFileName();
9   }