Package de.xima.fc.workflow
Class WorkflowFileValue
- java.lang.Object
-
- de.xima.fc.workflow.WorkflowFileValue
-
- All Implemented Interfaces:
IWorkflowFileValue
public final class WorkflowFileValue extends Object implements IWorkflowFileValue
Deprecated.Use the builder from the parameters given to the correspondingworkflow trigger methodorworkflow node method. If you do not have access to these, useFileValueDescriptor.builder()orWorkflowFileValueBuilder.POJO implementation ofIWorkflowFileValue.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Constructor Summary
Constructors Constructor Description WorkflowFileValue(List<File> files)Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static IWorkflowFileValueempty()Deprecated.List<File>getFiles()Deprecated.A list of files that should be made available to the workflow context.Map<String,List<IWorkflowFile>>getGroupedFiles()Deprecated.A list files that should be made available to the workflow context, grouped by the type of the files.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.xima.fc.interfaces.workflow.execution.IWorkflowFileValue
hasAnyFiles
-
-
-
-
Method Detail
-
getFiles
public List<File> getFiles()
Deprecated.Description copied from interface:IWorkflowFileValueA list of files that should be made available to the workflow context. Must point to existing files.- Specified by:
getFilesin interfaceIWorkflowFileValue- Returns:
- A list of files created or provided by the workflow element.
-
getGroupedFiles
public Map<String,List<IWorkflowFile>> getGroupedFiles()
Deprecated.Description copied from interface:IWorkflowFileValueA list files that should be made available to the workflow context, grouped by the type of the files. Must point to existing files. The map keys must agree with thefile value descriptorof the workflow element. UseDEFAULT_FILE_KEYas the key for the default list of files.- Specified by:
getGroupedFilesin interfaceIWorkflowFileValue- Returns:
- A map with the files for each file type.
-
empty
public static IWorkflowFileValue empty()
Deprecated.
-
-