Package de.xima.fc.interfaces
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 typeList<String>
to your model.- Author:
- XIMA MEDIA GmbH
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
IUploadConsuming.uploadElements
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<String>
getUploadElements()
void
setUploadElements(List<String> uploadElements)
-
-
-
Method Detail
-
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 ofFormElement.getAlias()
es. These are the upload elements whose files are consumed by this upload file consuming action.
-
-