Interface FileDetails


  • public interface FileDetails
    Provides details of the uploaded file like file name, content-type and size
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getContentType()
      The content type as transmitted by the uploading client.
      java.lang.String getFileName()
      The original file name of the uploaded file, as transmitted by the client.
    • Method Detail

      • getContentType

        java.lang.String getContentType()
        The content type as transmitted by the uploading client.
        Returns:
        the content type or null if unknown
      • getFileName

        java.lang.String getFileName()
        The original file name of the uploaded file, as transmitted by the client. If a path was included in the request, it is stripped off.
        Returns:
        the plain file name without any path segments