Interface IUploadConsuming

All Known Implementing Classes:
VerarbeitungCompressAsZip, VerarbeitungEmail, VerarbeitungInbox, VerarbeitungReturnFile, VerarbeitungSaveToFilesystem

public interface IUploadConsuming
Interface for all workflow actions that require upload files to perform their job. This interface is optional, if you require different types of upload inputs, you can add different fields of type List<String> to your model.
Author:
XIMA MEDIA GmbH
  • Method Details

    • getUploadElements

      List<String> getUploadElements()
      Returns:
      A list of FormElement.getAlias()es. These are the upload elements whose files are consumed by this upload file consuming action.
    • setUploadElements

      void setUploadElements(List<String> uploadElements)
      Parameters:
      uploadElements - A list of FormElement.getAlias()es. These are the upload elements whose files are consumed by this upload file consuming action.