Interface IWorkflowFile
public interface IWorkflowFile
A single file provided by a workflow trigger or node.
- Since:
- 8.2.0
-
Method Summary
Modifier and TypeMethodDescriptionThe content type of the file.getFile()The file that should be made available to the workflow context.
-
Method Details
-
getContentType
String getContentType()The content type of the file. Useapplication/octet-streamif the content type is unknown.- Returns:
- The content type of the file.
-
getFile
File getFile()The file that should be made available to the workflow context. Must point to an existing file.- Returns:
- The file created or provided by the workflow element.
-