We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f50613b commit 72962dfCopy full SHA for 72962df
src/main/java/com/reedelk/file/component/FileWrite.java
@@ -34,8 +34,8 @@
34
attributes = FileAttribute.class,
35
payload = Void.class)
36
@ComponentInput(
37
- payload = Object.class,
38
- description = "The input payload is used to evaluate the file name to write.")
+ payload = { byte[].class, String.class },
+ description = "The data to be written on the file. The expected input is byte array or string.")
39
@Description("Writes a file to the file system to the given File name and optionally provided Base path. " +
40
"The write mode can be used to override an existing file, create new file if it does not exists " +
41
"or append to the existing file if exists already.")
0 commit comments