Interface IResolvedFile
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
ResolvedFile
public interface IResolvedFile extends Serializable
Represents an individual resolved file, returned byIWorkflowFileHandler.resolveReferencedFiles(WorkflowNode, IReferencedFileList, IFileSearchOptions)
- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description File
getFile()
String
getOriginalFileName()
IResolvedFileSourceDetails
getSourceDetails()
-
-
-
Method Detail
-
getFile
File getFile()
- Returns:
- The file object representing the file with the data.
-
getOriginalFileName
String getOriginalFileName()
- Returns:
- The original name of the file.
-
getSourceDetails
IResolvedFileSourceDetails getSourceDetails()
- Returns:
- Details regarding where the file originated from, e.g. whether it is a file from a previous action, a file from an attachment etc.
-
-