Interface IOnTaskBeginRetValBuilder
- All Superinterfaces:
org.apache.commons.lang3.builder.Builder<IOnTaskBeginRetVal>
public interface IOnTaskBeginRetValBuilder
extends org.apache.commons.lang3.builder.Builder<IOnTaskBeginRetVal>
Builder for
IOnTaskBeginRetVal.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
Method Summary
Modifier and TypeMethodDescriptiontriggerData(IValueCreator triggerDataCreator) Sets (replaces) the data made available while the task belonging to the trigger is being executed.default IOnTaskBeginRetValBuildertriggerData(Object triggerData) Sets (replaces) the data made available while the task belonging to the trigger is being executed.triggerFiles(IFileValueCreator triggerFilesCreator) Sets (replaces) the file made available while the task belonging to the trigger is being executed.default IOnTaskBeginRetValBuildertriggerFiles(IWorkflowFileValue triggerFiles) Sets (replaces) the file made available while the task belonging to the trigger is being executed.Methods inherited from interface org.apache.commons.lang3.builder.Builder
build
-
Method Details
-
triggerData
Sets (replaces) the data made available while the task belonging to the trigger is being executed.- Parameters:
triggerDataCreator- Creator for the data to be made available to the workflow.- Returns:
- this for chaining.
-
triggerData
Sets (replaces) the data made available while the task belonging to the trigger is being executed.- Parameters:
triggerData- Data to be made available to the workflow.- Returns:
- this for chaining.
-
triggerFiles
Sets (replaces) the file made available while the task belonging to the trigger is being executed.- Parameters:
triggerFilesCreator- Creator for the file to be made available to the workflow.- Returns:
- This builder for chaining methods calls.
- Since:
- 8.2.0
-
triggerFiles
Sets (replaces) the file made available while the task belonging to the trigger is being executed.- Parameters:
triggerFiles- Files to be made available to the workflow.- Returns:
- This builder for chaining methods calls.
- Since:
- 8.2.0
-