Interface IMultiFileUploadParameterItem


  • public interface IMultiFileUploadParameterItem
    Interface for IMultiFileUploadParameterItem.

    This parameter has all information about each file uploaded and possible extra information associated to it.

    Since:
    6.1.0
    Version:
    $Revision: 13752 $ $Date: 2011-10-13 14:10:51 -0300 (Thu, 13 Oct 2011) $
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getFileName()
      Gets file name.
      java.lang.String getFilePath()
      Gets file path.
      java.lang.String getId()
      Returns the ID of item.
      java.lang.Object getParameter​(java.lang.String name)
      Returns a parameter value for a given parameter name.
      java.util.Map<java.lang.String,​java.lang.Object> getParameterMap()
      Returns a field parameter map, it's a map where the key is a dataId and the value is the parameter value.
    • Method Detail

      • getParameterMap

        java.util.Map<java.lang.String,​java.lang.Object> getParameterMap()
        Returns a field parameter map, it's a map where the key is a dataId and the value is the parameter value.
        Since:
        6.1.0
      • getParameter

        java.lang.Object getParameter​(java.lang.String name)
        Returns a parameter value for a given parameter name.
        Since:
        6.1.0
      • getId

        java.lang.String getId()
        Returns the ID of item.
        Since:
        6.1.0
      • getFileName

        java.lang.String getFileName()
        Gets file name.
        Returns:
        the file Name.
        Since:
        6.1.0
      • getFilePath

        java.lang.String getFilePath()
        Gets file path.
        Returns:
        the complete file Path.
        Since:
        6.1.0