Package de.xima.fc.form.common.models
Interface IXProcessUploadParams
- 
 public interface IXProcessUploadParamsInterface for the parameters passed to theIXItemBasic.processUpload(IXProcessUploadParams)method.- Since:
- 7.0.11
- Author:
- XIMA MEDIA GmbH
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description XItemgetItem()intgetRepetitionIndex()PathgetTempDir()A temporary directory that can be used to store files.IXUploadgetUpload()IXFormgetXForm()booleanisRepeated()
 
- 
- 
- 
Method Detail- 
getItemXItem getItem() - Returns:
- The item for which the upload is processed.
 
 - 
getRepetitionIndexint getRepetitionIndex() - Returns:
- The repetition index (which may not start at 0 and is not uniformly increasing, treat this as an ID),
     when the element is repeated. When the element is not repeated, returns 0.
 
 - 
getTempDirPath getTempDir() A temporary directory that can be used to store files. If you need to write arbitrary files, you should create a temporary subdirectory in this directory.- Returns:
- The temporary directory.
 
 - 
getUploadIXUpload getUpload() - Returns:
- The upload that was submitted.
 
 - 
getXFormIXForm getXForm() - Returns:
- The form which contains the element.
 
 - 
isRepeatedboolean isRepeated() - Returns:
- Whether the element is a repeated element.
 
 
- 
 
-