Interface IWorkflowFile
- 
public interface IWorkflowFileA 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 StringgetContentType()The content type of the file.FilegetFile()The file that should be made available to the workflow context. 
 - 
 
- 
- 
Method Detail
- 
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.
 
 
 - 
 
 -