Interface IOnTaskBeginRetValBuilder
-
- All Superinterfaces:
org.apache.commons.lang3.builder.Builder<IOnTaskBeginRetVal>
public interface IOnTaskBeginRetValBuilder extends org.apache.commons.lang3.builder.Builder<IOnTaskBeginRetVal>
Builder forIOnTaskBeginRetVal
.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description IOnTaskBeginRetValBuilder
triggerData(IValueCreator triggerDataCreator)
Sets (replaces) the data made available while the task belonging to the trigger is being executed.default IOnTaskBeginRetValBuilder
triggerData(Object triggerData)
Sets (replaces) the data made available while the task belonging to the trigger is being executed.IOnTaskBeginRetValBuilder
triggerFiles(IFileValueCreator triggerFilesCreator)
Sets (replaces) the file made available while the task belonging to the trigger is being executed.default IOnTaskBeginRetValBuilder
triggerFiles(IWorkflowFileValue triggerFiles)
Sets (replaces) the file made available while the task belonging to the trigger is being executed.
-
-
-
Method Detail
-
triggerData
IOnTaskBeginRetValBuilder triggerData(IValueCreator triggerDataCreator)
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
default IOnTaskBeginRetValBuilder triggerData(Object 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
IOnTaskBeginRetValBuilder triggerFiles(IFileValueCreator triggerFilesCreator)
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
default IOnTaskBeginRetValBuilder triggerFiles(IWorkflowFileValue 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
-
-