UploadedFileInformation.java :  » Web-Framework » vraptor » org » vraptor » interceptor » Java Open Source

Java Open Source » Web Framework » vraptor 
vraptor » org » vraptor » interceptor » UploadedFileInformation.java
package org.vraptor.interceptor;

import java.io.File;

public interface UploadedFileInformation {

  /**
   * @return Returns the contentType.
   */
  String getContentType();

  /**
   * @return Returns the file.
   */
  File getFile();

  /**
   * 
   * @return Returns the fileName.
   */
  String getFileName();

  /**
   * The complete file name from this file, as it was uploaded from the
   * client.
   * 
   * @return Returns the fileName.
   */
  String getCompleteFileName();

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.