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 corresponding workflow trigger method or workflow node method. If you do not have access to these, use FileValueDescriptor.builder() or WorkflowFileValueBuilder.
POJO implementation of IWorkflowFileValue.
Since:
7.0.0
Author:
XIMA MEDIA GmbH
  • Constructor Details

    • WorkflowFileValue

      public WorkflowFileValue(List<File> files)
      Deprecated.
  • Method Details

    • getFiles

      public List<File> getFiles()
      Deprecated.
      Description copied from interface: IWorkflowFileValue
      A list of files that should be made available to the workflow context. Must point to existing files.
      Specified by:
      getFiles in interface IWorkflowFileValue
      Returns:
      A list of files created or provided by the workflow element.
    • getGroupedFiles

      public Map<String, List<IWorkflowFile>> getGroupedFiles()
      Deprecated.
      Description copied from interface: IWorkflowFileValue
      A 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 the file value descriptor of the workflow element. Use DEFAULT_FILE_KEY as the key for the default list of files.
      Specified by:
      getGroupedFiles in interface IWorkflowFileValue
      Returns:
      A map with the files for each file type.
    • empty

      public static IWorkflowFileValue empty()
      Deprecated.