Interface IWorkflowFile
-
public interface IWorkflowFile
A single file provided by a workflow trigger or node.- Since:
- 8.2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getContentType()
The content type of the file.File
getFile()
The file that should be made available to the workflow context.
-
-
-
Method Detail
-
getContentType
String getContentType()
The content type of the file. Useapplication/octet-stream
if 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.
-
-