Class ResolvedFile
- java.lang.Object
 - 
- de.xima.fc.workflow.processor.model.ResolvedFile
 
 
- 
- All Implemented Interfaces:
 IResolvedFile,Serializable
public class ResolvedFile extends Object implements IResolvedFile, Serializable
Default POJO implementation ofIResolvedFile.- Since:
 - 7.0.0
 - Author:
 - XIMA MEDIA GmbH
 - See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description ResolvedFile(String originalFileName, File file, IResolvedFileSourceDetails sourceDetails)Creates a new POJO with the given data. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FilegetFile()StringgetOriginalFileName()IResolvedFileSourceDetailsgetSourceDetails()StringtoString() 
 - 
 
- 
- 
Constructor Detail
- 
ResolvedFile
public ResolvedFile(String originalFileName, File file, IResolvedFileSourceDetails sourceDetails)
Creates a new POJO with the given data.- Parameters:
 file- Value returned bygetFile().originalFileName- Value returned bygetOriginalFileName().sourceDetails- Value returned bygetSourceDetails().
 
 - 
 
- 
Method Detail
- 
getFile
public File getFile()
- Specified by:
 getFilein interfaceIResolvedFile- Returns:
 - The file object representing the file with the data.
 
 
- 
getOriginalFileName
public String getOriginalFileName()
- Specified by:
 getOriginalFileNamein interfaceIResolvedFile- Returns:
 - The original name of the file.
 
 
- 
getSourceDetails
public IResolvedFileSourceDetails getSourceDetails()
- Specified by:
 getSourceDetailsin interfaceIResolvedFile- 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.
 
 
 - 
 
 -