Class ResolvedMultiFile
- java.lang.Object
-
- de.xima.fc.workflow.processor.model.ResolvedMultiFile
-
- All Implemented Interfaces:
IResolvedMultiFile
,Serializable
@Deprecated public final class ResolvedMultiFile extends Object implements IResolvedMultiFile, Serializable
Deprecated.This implementation is returned only by deprecated methods, use non-deprecated methods instead, e.g.IWorkflowFileHandler.resolveReferencedFiles(WorkflowNode, de.xima.fc.interfaces.workflow.execution.IReferencedFileList, IFileSearchOptions)
.Default POJO implementation ofIResolvedMultiFile
.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ResolvedMultiFile(File containingDirectory, List<IResolvedFile> individualFiles)
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static IResolvedMultiFile
empty(File containingDirectory)
Deprecated.File
getContainingDirectory()
Deprecated.List<IResolvedFile>
getIndividualFiles()
Deprecated.
-
-
-
Constructor Detail
-
ResolvedMultiFile
public ResolvedMultiFile(File containingDirectory, List<IResolvedFile> individualFiles)
Deprecated.- Parameters:
containingDirectory
- Value returned bygetContainingDirectory()
.individualFiles
- Value returned bygetIndividualFiles()
.
-
-
Method Detail
-
getContainingDirectory
public File getContainingDirectory()
Deprecated.- Specified by:
getContainingDirectory
in interfaceIResolvedMultiFile
- Returns:
- A temporary directory with all the files from the given descriptor. Empty directory when no files were found.
-
getIndividualFiles
public List<IResolvedFile> getIndividualFiles()
Deprecated.- Specified by:
getIndividualFiles
in interfaceIResolvedMultiFile
- Returns:
- A list of pairs with the original name of the file, and the file object representing the file with the data.
-
empty
public static IResolvedMultiFile empty(File containingDirectory)
Deprecated.- Parameters:
containingDirectory
- Value returned bygetContainingDirectory()
.- Returns:
- A new empty resolved multi file with no individual files.
-
-